Dusty wave SPH test#

Test that the dust/gas wave evolution match the eigen mode analysis.

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

Sim parameters

28 rho = 1
29 epsilon_0 = 0.5
30 cs_g_list = np.logspace(-4, -1, 3).tolist()
31 ts = 1
32
33 ampl_perturbation = 0.001
34 plot_scaling = 1e3
35 label_scaling = "10^3 \\cdot"
36 delta_v_0_list = [cs * ampl_perturbation for cs in cs_g_list]
37
38 lx = int(os.environ.get("LZ", "18"))
39 ly = 12
40 lz = 12

Use shamrock documentation style for matplotlib

44 shamrock.matplotlib.set_shamrock_mpl_style()

Do setup

 50 lmin = (-(lx // 2), -(ly // 2), -(lz // 2))
 51 lmax = (lx // 2, ly // 2, lz // 2)
 52
 53 # Call with dr = 1 as we will rescale on next call
 54 (xm, ym, zm), (xM, yM, zM) = shamrock.math.get_periodic_hcp_box(1.0, lmin, lmax)
 55 print(f"base lattice : xM = {xM}, yM = {yM}, zM = {zM}")
 56 dr = 1.0 / (xM - xm)
 57 print(f"dr = {dr}")
 58 bmin, bmax = shamrock.math.get_periodic_hcp_box(dr, lmin, lmax)
 59 print(f"new lattice : bmin = {bmin}, bmax = {bmax}")
 60 xm, ym, zm = bmin
 61 xM, yM, zM = bmax
 62
 63 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
 64 totmass = rho * vol_b
 65
 66
 67 def do_setup(model, cs, delta_v_0):
 68
 69     cfg = model.gen_default_config()
 70     # cfg.set_artif_viscosity_Constant(alpha_u = 1, alpha_AV = 1, beta_AV = 2)
 71     # cfg.set_artif_viscosity_VaryingMM97(alpha_min = 0.1,alpha_max = 1,sigma_decay = 0.1, alpha_u = 1, beta_AV = 2)
 72     cfg.set_artif_viscosity_VaryingCD10(
 73         alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
 74     )
 75     cfg.set_dust_mode_monofluid_tva(nvar=1)
 76     cfg.set_dust_drag_constant([ts])
 77     cfg.set_boundary_periodic()
 78     cfg.set_eos_isothermal(cs)
 79     cfg.print_status()
 80     model.set_solver_config(cfg)
 81
 82     scheduler_split_val = int(2e7)
 83     scheduler_merge_val = 1
 84
 85     model.init_scheduler(scheduler_split_val, scheduler_merge_val)
 86
 87     model.resize_simulation_box(bmin, bmax)
 88
 89     setup = model.get_setup()
 90     gen = setup.make_generator_lattice_hcp(dr, bmin, bmax)
 91     setup.apply_setup(gen, insert_step=scheduler_split_val)
 92
 93     def func_s(r):
 94         return np.sqrt(rho * epsilon_0)
 95
 96     model.set_field_value_lambda_f64("s_j", func_s, 0)
 97
 98     print(delta_v_0)
 99
100     def vel_func(r):
101         global mm, MM
102         x, y, z = r
103
104         f = 2 * np.pi / (xM - xm)
105
106         vel = delta_v_0 * np.sin(x * f)
107
108         return (vel, 0.0, 0.0)
109
110     model.set_field_value_lambda_f64_3("vxyz", vel_func)
111
112     pmass = model.total_mass_to_part_mass(totmass)
113     model.set_particle_mass(pmass)
114
115     model.set_cfl_cour(0.1)
116     model.set_cfl_force(0.1)
117
118     model.timestep()
base lattice : xM = 18.0, yM = 10.392304845413264, zM = 9.797958971132712
dr = 0.027777777777777776
new lattice : bmin = (-0.5, -0.28867513459481287, -0.2721655269759086), bmax = (0.5, 0.28867513459481287, 0.2721655269759086)

Field recovery for plots

123 def get_field_results(model):
124     def custom_getter_x(size: int, dic_out: dict) -> np.array:
125         return dic_out["xyz"][:, 0]
126
127     def custom_getter_vx(size: int, dic_out: dict) -> np.array:
128         return dic_out["vxyz"][:, 0]
129
130     x_field = model.compute_field("custom", "f64", custom_getter_x)
131     vx_field = model.compute_field("custom", "f64", custom_getter_vx)
132     rho_field = model.compute_field("rho", "f64")
133     s_j_field = model.compute_field("s_j", "f64")
134
135     def internal_eps(size: int, s: np.array, rho: np.array) -> np.array:
136         return (s**2) / rho
137
138     eps_field = shamrock.map_fields_f64(internal_eps, s=s_j_field, rho=rho_field)
139
140     def internal_rho_g(size: int, rho: np.array, eps: np.array) -> np.array:
141         return rho * (1 - eps)
142
143     def internal_rho_d(size: int, rho: np.array, eps: np.array) -> np.array:
144         return rho * eps
145
146     rho_g_field = shamrock.map_fields_f64(internal_rho_g, rho=rho_field, eps=eps_field)
147     rho_d_field = shamrock.map_fields_f64(internal_rho_d, rho=rho_field, eps=eps_field)
148
149     x_data = np.asarray(x_field.collect_data())
150     vx_data = np.asarray(vx_field.collect_data())
151     eps_data = np.asarray(eps_field.collect_data())
152     rho_data = np.asarray(rho_field.collect_data())
153     rho_g_data = np.asarray(rho_g_field.collect_data())
154     rho_d_data = np.asarray(rho_d_field.collect_data())
155     return x_data, rho_data, rho_g_data, rho_d_data, vx_data, eps_data

Analytics

162 def dustywave_tva_matrix(k, cs, ts, eps):
163     a = k * cs
164     b = k * k * ts * cs * cs * eps
165
166     return np.array(
167         [
168             [0, 0, -1j * a],
169             [b * (1 - eps), -b, 0],
170             [-1j * a * (1 - eps), 1j * a, 0],
171         ],
172         dtype=complex,
173     )
174
175
176 def eigensystem_dustywave_tva(k, cs, ts, eps):
177     M = dustywave_tva_matrix(k, cs, ts, eps)
178     vals, vecs = np.linalg.eig(M)
179     return 1j * vals, vecs
180
181
182 def dustywave_dispersion_relation(omega_k: float, k: float, cs: float, ts: float, eps: float):
183     # w^4 + i w^3 / ts - cs^2 k^2 w^2 - i cs^2 k^2 (1-eps) w / ts = 0
184     return (
185         omega_k**4
186         + 1j * (omega_k**3 / ts)
187         - (cs**2 * k**2 * omega_k**2)
188         - 1j * (cs**2 * k**2 * (1 - eps) * omega_k / ts)
189     )
190
191
192 def get_dustywave_omega_k(k: float, cs: float, ts: float, eps: float) -> np.ndarray:
193     # w^4 + i w^3/ts - cs^2 k^2 w^2 - i cs^2 k^2 (1-eps) w/ts = 0
194     coeffs = [
195         1.0,
196         1j / ts,
197         -(cs**2 * k**2),
198         -1j * (cs**2 * k**2 * (1.0 - eps) / ts),
199         0.0,
200     ]
201     return np.roots(coeffs)
202
203
204 def eigen_model(x, t, offset, ampl, omega, k):
205     return offset + np.real(ampl * np.exp(1j * (k * x - omega * t)))
206
207
208 def project_eigenmode(
209     eigenvec: complex, eigenval: complex, rho_on_rho_0: complex, eps: complex, v_on_cs: complex
210 ):
211     v = np.array([rho_on_rho_0, eps, v_on_cs], dtype=complex)
212     print(f"eigenvec={eigenvec}")
213     print(f"v={v}")
214
215     c = np.linalg.solve(eigenvec, v)
216
217     print(f"c={c}")
218     return c
219
220
221 def find_eigen_decomp(x_data, rho_data, eps_data, vx_data, eigval, eigvec):
222
223     offset_rho, ampl_rho, phi_rho = fit_sine_wave(x_data, rho_data)
224     offset_eps, ampl_eps, phi_eps = fit_sine_wave(x_data, eps_data)
225     offset_vx, ampl_vx, phi_vx = fit_sine_wave(x_data, vx_data)
226
227     print(f"offset_rho={offset_rho:.6g}, ampl_rho={ampl_rho:.6g}, phi_rho={phi_rho:.6g} rad")
228     print(f"offset_eps={offset_eps:.6g}, ampl_eps={ampl_eps:.6g}, phi_eps={phi_eps:.6g} rad")
229     print(f"offset_vx={offset_vx:.6g}, ampl_vx={ampl_vx:.6g}, phi_vx={phi_vx:.6g} rad")
230
231     print(f"eigenval = {eigval}")
232     print(f"eigenvec = {eigvec}")
233
234     coefs = project_eigenmode(eigvec, eigval, ampl_rho / rho, ampl_eps, -1j * ampl_vx / cs)
235     print(f"coefs={coefs}")
236
237     return coefs

Curve fitting

242 from scipy.linalg import lstsq
243 from scipy.optimize import curve_fit
244
245
246 def fit_sine_wave(x, y, prev_phi=None):
247     offset = np.mean(y)
248     y0 = y - offset
249
250     z = np.exp(1j * k * x)
251
252     lam = np.vdot(z, y0) / np.vdot(z, z)
253
254     ampl = 2 * np.abs(lam)
255     phi = np.angle(lam)
256
257     # enforce continuity with previous phase if available
258     if prev_phi is not None:
259         # candidate 1
260         phi1 = phi
261         a1 = ampl
262
263         # candidate 2 (flip sign via phase shift)
264         phi2 = phi + np.pi
265         a2 = -ampl
266
267         # choose whichever is closer to previous phase
268         if abs(np.angle(np.exp(1j * (phi1 - prev_phi)))) > abs(
269             np.angle(np.exp(1j * (phi2 - prev_phi)))
270         ):
271             phi, ampl = phi2, a2
272
273     # wrap phase
274     phi = np.mod(phi, 2 * np.pi)
275
276     return offset, ampl, phi

Perform the simulation

282 all_case_plot = []
283
284 for ics, cs in enumerate(cs_g_list):
285     ctx = shamrock.Context()
286     ctx.pdata_layout_new()
287
288     model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
289     do_setup(model, cs, delta_v_0_list[ics])
290
291     k = 2 * np.pi / (xM - xm)
292
293     # Compute Omega
294     omega_k = get_dustywave_omega_k(k, cs, ts, epsilon_0)
295     print(omega_k)
296
297     print(f"k={k} cs={cs} ts={ts} epsilon_0={epsilon_0}")
298     eigval, eigvec = eigensystem_dustywave_tva(k, cs, ts, epsilon_0)
299
300     print(f"eigenval = {eigval}")
301     print(f"eigenvec = {eigvec}")
302
303     Twave = 2 * np.pi / np.max(np.abs(np.real(eigval)))
304     print(Twave)
305
306     Twave_cnt = 40
307     nwave = 2.0
308
309     t_list = []
310     rho_t_list = []
311     eps_t_list = []
312     vx_t_list = []
313     rho_t_list_analytic = []
314     eps_t_list_analytic = []
315     vx_t_list_analytic = []
316
317     rho_last_phi = np.pi
318     eps_last_phi = 0
319     vx_last_phi = 3 * np.pi / 2
320
321     os.makedirs("_to_trash", exist_ok=True)
322     for i in range(int(Twave_cnt * nwave)):
323         t = Twave * i / (Twave_cnt)
324         model.evolve_until(t)
325
326         x_data, rho_data, rho_g_data, rho_d_data, vx_data, eps_data = get_field_results(model)
327
328         x_ana = np.linspace(xm, xM, 256)
329
330         if i == 0:
331             coefs = find_eigen_decomp(x_data, rho_data, eps_data, vx_data, eigval, eigvec)
332             print(f"coefs={coefs}")
333
334             decomp = np.array(eigvec[0] * 0)
335             for ieig in range(len(eigval)):
336                 decomp += coefs[ieig] * eigvec[:, ieig]
337             print(f"decomp={decomp}")
338
339         model_rho_on_rho_0 = np.zeros_like(x_ana, dtype=complex)
340         model_eps = np.zeros_like(x_ana, dtype=complex)
341         model_vx_on_cs = np.zeros_like(x_ana, dtype=complex)
342
343         for ieig in range(len(eigval)):
344             model_rho_on_rho_0 += eigen_model(
345                 x_ana, model.get_time(), 0.0, coefs[ieig] * eigvec[0, ieig], eigval[ieig], k
346             )
347             model_eps += eigen_model(
348                 x_ana, model.get_time(), 0.0, coefs[ieig] * eigvec[1, ieig], eigval[ieig], k
349             )
350             model_vx_on_cs += eigen_model(
351                 x_ana, model.get_time(), 0.0, coefs[ieig] * eigvec[2, ieig], eigval[ieig], k
352             )
353
354         model_rho = rho * np.real(model_rho_on_rho_0)
355         model_eps = np.real(model_eps)
356         model_vx = cs * np.real(model_vx_on_cs)
357
358         model_rho += 1
359         model_eps += 0.5
360         model_vx += 0
361
362         _, rho_t_ampl, rho_t_phi = fit_sine_wave(x_data, rho_data, rho_last_phi)
363         _, eps_t_ampl, eps_t_phi = fit_sine_wave(x_data, eps_data, eps_last_phi)
364         _, vx_t_ampl, vx_t_phi = fit_sine_wave(x_data, vx_data, vx_last_phi)
365         _, rho_ana_ampl, _ = fit_sine_wave(x_ana, model_rho, rho_last_phi)
366         _, eps_ana_ampl, _ = fit_sine_wave(x_ana, model_eps, eps_last_phi)
367         _, vx_ana_ampl, _ = fit_sine_wave(x_ana, model_vx, vx_last_phi)
368
369         print(f"rho_t_ampl={rho_t_ampl:.6g}, rho_t_phi={rho_t_phi:.6g} rad")
370         print(f"eps_t_ampl={eps_t_ampl:.6g}, eps_t_phi={eps_t_phi:.6g} rad")
371         print(f"vx_t_ampl={vx_t_ampl:.6g}, vx_t_phi={vx_t_phi:.6g} rad")
372
373         t_list.append(model.get_time())
374         rho_t_list.append(rho_t_ampl)
375         eps_t_list.append(eps_t_ampl)
376         vx_t_list.append(vx_t_ampl)
377         rho_t_list_analytic.append(rho_ana_ampl)
378         eps_t_list_analytic.append(eps_ana_ampl)
379         vx_t_list_analytic.append(vx_ana_ampl)
380
381         rho_last_phi = rho_t_phi
382         eps_last_phi = eps_t_phi
383         vx_last_phi = vx_t_phi
384
385         fig, axs = plt.subplots(1, 1, figsize=(10, 5))
386
387         axs.plot(x_data, rho_data - 1, ".", label=r"$\delta \rho$")
388         axs.plot(x_data, eps_data - 0.5, ".", label=r"$\delta \epsilon$")
389         axs.plot(x_data, vx_data / cs, ".", label=r"$\delta v_x / c_s$")
390
391         axs.plot(x_ana, model_rho - 1, "-", label=r"$\delta \rho$ analytic")
392         axs.plot(x_ana, model_eps - 0.5, "-", label=r"$\delta \epsilon$ analytic")
393         axs.plot(x_ana, model_vx / cs, "-", label=r"$\delta v_x / c_s$ analytic")
394
395         axs.set_xlabel(r"$x$ [code unit]")
396         axs.set_ylabel(r"$\delta$ fields [code unit]")
397         axs.set_xlim(xm, xM)
398         # axs.set_ylim(rho / 2 - 1e-3, rho / 2 + 1e-3)
399         axs.set_ylim(-ampl_perturbation * 1.1, +ampl_perturbation * 1.1)
400         axs.text(
401             0.02,
402             0.98,
403             f"t = {t:.2f} | cs = {cs:e}",
404             transform=axs.transAxes,
405             verticalalignment="top",
406             horizontalalignment="left",
407             bbox=dict(boxstyle="round", facecolor="wheat", alpha=0.5),
408         )
409         plt.legend(loc="upper right")
410         plt.tight_layout()
411         plt.savefig(f"_to_trash/dump_dustywave_tva_{ics:02d}_{i:02d}.png")
412         plt.close()
413
414         # if i == 1:
415         #    break
416
417     t_arr = np.asarray(t_list)
418
419     rho_t_list = np.array(rho_t_list)
420     eps_t_list = np.array(eps_t_list)
421     vx_t_list = np.array(vx_t_list)
422     rho_t_list_analytic = np.array(rho_t_list_analytic)
423     eps_t_list_analytic = np.array(eps_t_list_analytic)
424     vx_t_list_analytic = np.array(vx_t_list_analytic)
425
426     curves = []
427
428     factor = plot_scaling
429
430     def add_curve(x, y, symbol, label):
431         curves.append(
432             {
433                 "x": x,
434                 "y": factor * y,
435                 "symbol": symbol,
436                 "label": label,
437             }
438         )
439
440     add_curve(t_arr, rho_t_list, ".", r"$\delta \rho (t)$")
441     add_curve(t_arr, eps_t_list, ".", r"$\delta \epsilon (t)$")
442     add_curve(t_arr, vx_t_list / cs, ".", r"$\delta v_x / c_s (t)$")
443     add_curve(t_arr, rho_t_list_analytic, "--", r"$\delta \rho (t)$ analytic")
444     add_curve(t_arr, eps_t_list_analytic, "--", r"$\delta \epsilon (t)$ analytic")
445     add_curve(t_arr, vx_t_list_analytic / cs, "--", r"$\delta v_x / c_s(t)$ analytic")
446
447     return_dict = {
448         "curves": curves,
449         "cs": cs,
450         "ics": ics,
451         "xlabel": "$t$ [code unit]",
452         "ylabel": f"${label_scaling} \\delta$ fields [code unit]",
453         "title": f"cs={cs:.2e} [code unit]",
454     }
455
456     plt.figure(dpi=150)
457     for curve in curves:
458         plt.plot(curve["x"], curve["y"], curve["symbol"], label=curve["label"])
459     plt.xlabel(return_dict["xlabel"])
460     plt.ylabel(return_dict["ylabel"])
461     plt.title(return_dict["title"])
462     plt.legend(fontsize=12, loc="upper right")
463     plt.savefig(f"_to_trash/dustywave_tva_scan_{return_dict['ics']:04}.png")
464
465     all_case_plot.append(return_dict)
  • cs=1.00e-04 [code unit]
  • cs=3.16e-03 [code unit]
  • cs=1.00e-01 [code unit]
----- 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": {
            "ballabio_ts_limiter": false,
            "drag_mode": {
                "stopping_times": [
                    1.0
                ],
                "type": "constant_stopping_times"
            },
            "mode": {
                "C_1_fluid": 0.1,
                "C_drift": 1.0,
                "cfl_density_threshold": 2.220446049250313e-16,
                "dust_corrected_av": false,
                "ensure_s_j_positivity": true,
                "ndust": 1,
                "pure_diffusion_mode": false,
                "smooth_s_positivity_limiter": false,
                "type": "monofluid_tva"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs": 0.0001,
            "eos_type": "isothermal"
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "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"
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null,
        "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 = 2592 ( 2.6e+03 ) Ntotal = 2592 ( 2.6e+03 rank min = 1.8e+06 max = 2.6e+03) rate = 2.592000e+03 N.s^-1
SPH setup: the generation step took : 0.002191015 s
SPH setup: final particle count = 2592 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     : 14.85 us   (75.4%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (0.1%)
   patch tree reduce : 911.00 ns  (0.2%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.2%)
   LB compute        : 554.09 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (0.8%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         2592 / 2592 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.005674935000000001 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 |   2.3% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.009073389000000001 s
1.0000000000000001e-07
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.2%)
   patch tree reduce : 601.00 ns  (0.3%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.6%)
   LB compute        : 173.10 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 2.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (55.8%)
Warning: High interface/patch volume 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.183256172839506
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.030555555555555558 unconverged cnt = 2592
Warning: High interface/patch volume 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.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03361111111111112 unconverged cnt = 2592
Warning: High interface/patch volume 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.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03697222222222223 unconverged cnt = 2592
Warning: High interface/patch volume 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.5088734567901234
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.04066944444444446 unconverged cnt = 2592
Warning: High interface/patch volume 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.579861111111111
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.04473638888888891 unconverged cnt = 2592
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1840277777777777
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.049210027777777804 unconverged cnt = 2592
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5674843145230745e-25,0,0)
    sum a = (-2.0020922787294212e-26,2.5579711602280574e-25,2.3249939174558728e-26)
    sum e = 7.856742013183866e-16
    sum de = -2.9274135154685985e-32
Info: cfl dt = 0.49416049735100015 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    | 1.6560e+04 | 2592 |      1 | 1.565e-01 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
[-1.11022302e-16-9.99999803e-01j -4.44288327e-04-9.86960440e-08j
  4.44288327e-04-9.86960440e-08j  0.00000000e+00+0.00000000e+00j]
k=6.283185307179586 cs=0.0001 ts=1 epsilon_0=0.5
eigenval = [-0.00044429-9.86960440e-08j  0.00044429-9.86960440e-08j
  0.        +1.69300148e-21j]
eigenvec = [[ 8.16496567e-01+0.00000000e+00j  8.16496567e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 4.02924906e-08-1.81379929e-04j  4.02924906e-08+1.81379929e-04j
   4.47213595e-01-6.31490503e-17j]
 [-5.77350245e-01-1.28254981e-04j  5.77350245e-01-1.28254981e-04j
  -1.47910362e-16+4.07053332e-15j]]
14142.135972674165
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 7.0151655690000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009946590000000002 s
sph::RenderFieldGetter compute custom field took :  0.000688551 s
offset_rho=0.999981, ampl_rho=1.5987e-16, phi_rho=5.96884 rad
offset_eps=0.500009, ampl_eps=7.71362e-17, phi_eps=2.839 rad
offset_vx=0, ampl_vx=1e-07, phi_vx=4.71239 rad
eigenval = [-0.00044429-9.86960440e-08j  0.00044429-9.86960440e-08j
  0.        +1.69300148e-21j]
eigenvec = [[ 8.16496567e-01+0.00000000e+00j  8.16496567e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 4.02924906e-08-1.81379929e-04j  4.02924906e-08+1.81379929e-04j
   4.47213595e-01-6.31490503e-17j]
 [-5.77350245e-01-1.28254981e-04j  5.77350245e-01-1.28254981e-04j
  -1.47910362e-16+4.07053332e-15j]]
eigenvec=[[ 8.16496567e-01+0.00000000e+00j  8.16496567e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 4.02924906e-08-1.81379929e-04j  4.02924906e-08+1.81379929e-04j
   4.47213595e-01-6.31490503e-17j]
 [-5.77350245e-01-1.28254981e-04j  5.77350245e-01-1.28254981e-04j
  -1.47910362e-16+4.07053332e-15j]]
v=[1.59870093e-16+0.j    7.71362122e-17+0.j    0.00000000e+00-0.001j]
c=[ 3.84764955e-07+8.66025354e-04j  3.84764955e-07-8.66025354e-04j
 -7.02481473e-07-6.07335744e-23j]
coefs=[ 3.84764955e-07+8.66025354e-04j  3.84764955e-07-8.66025354e-04j
 -7.02481473e-07-6.07335744e-23j]
coefs=[ 3.84764955e-07+8.66025354e-04j  3.84764955e-07-8.66025354e-04j
 -7.02481473e-07-6.07335744e-23j]
decomp=[1.59870057e-16-1.08474539e-19j 7.71363788e-17+3.61599721e-26j
 1.12600601e-23-1.00000000e-03j]
rho_t_ampl=-1.5987e-16, rho_t_phi=2.82724 rad
eps_t_ampl=-7.71362e-17, eps_t_phi=5.98059 rad
vx_t_ampl=1e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 353.55s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 0, dt = 0.49416049735100015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.68 us   (4.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 238.26 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (77.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8268705113033804e-24,1.26404830053609e-25,1.1489201505880408e-26)
    sum a = (6.811841947065152e-25,6.846986891644136e-26,8.627752080581692e-26)
    sum e = 7.856742013183864e-16
    sum de = -1.494521636844495e-31
Info: cfl dt = 16.801455314939325 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    | 5.7045e+04 | 2592 |      1 | 4.544e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39151.64544741889 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.49416049735100015, dt = 16.801455314939325 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (2.3%)
   patch tree reduce : 1.64 us    (0.8%)
   gen split merge   : 1.11 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.8%)
   LB compute        : 175.53 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.215949806473838e-24,1.2305134148070216e-24,1.476649982551432e-24)
    sum a = (-1.036610626628742e-25,-8.406417296049491e-26,2.3094847271393273e-26)
    sum e = 7.85674201322218e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 27.672895979801314 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    | 5.6556e+04 | 2592 |      1 | 4.583e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1319759.4146855022 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.295615812290325, dt = 27.672895979801314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.7%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 802.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 146.82 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.721533373394459e-24,-2.377182433740958e-24,1.5849708557286047e-24)
    sum a = (-4.50686816101955e-25,3.2019385701958373e-25,9.629136038893772e-26)
    sum e = 7.856742138702657e-16
    sum de = -6.933347799794049e-32
Info: cfl dt = 34.920380535989175 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    | 5.6570e+04 | 2592 |      1 | 4.582e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2174256.0627962924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 44.96851179209164, dt = 34.920380535989175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (3.5%)
   patch tree reduce : 1.20 us    (0.8%)
   gen split merge   : 912.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 135.40 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.899938392747075e-23,1.4397606583037028e-23,5.960281549631391e-24)
    sum a = (-3.1675930292732034e-26,-2.8809991132102954e-25,1.0780093393048532e-25)
    sum e = 7.856743279594568e-16
    sum de = 7.549645381997965e-32
Info: cfl dt = 39.75188966404617 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    | 5.7277e+04 | 2592 |      1 | 4.525e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2777953.4637663136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 79.88889232808081, dt = 39.75188966404617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (3.0%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 1.05 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 136.60 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.859139767768607e-24,-7.675837663702646e-24,1.0446531724856125e-23)
    sum a = (1.1149219148277171e-25,1.2617131285718216e-25,-1.3331456307167087e-25)
    sum e = 7.856746922935254e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 42.97276165282297 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    | 5.7886e+04 | 2592 |      1 | 4.478e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3195939.2550855605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 119.64078199212699, dt = 42.97276165282297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.3%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 156.92 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.54840388469784e-24,5.9801307462939435e-24,-7.476153543365977e-26)
    sum a = (-1.9412839165229398e-25,5.031393387845166e-26,-4.0541482340741136e-26)
    sum e = 7.856754402242276e-16
    sum de = 3.389636702121535e-32
Info: cfl dt = 45.11989378331216 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    | 5.8536e+04 | 2592 |      1 | 4.428e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3493690.240894318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 162.61354364494997, dt = 45.11989378331216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (2.8%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (1.1%)
   LB compute        : 132.22 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7664292083918753e-23,6.620379909479441e-24,8.936883055800813e-26)
    sum a = (-1.695990752611626e-25,-1.0783168576416539e-25,3.862797101608213e-26)
    sum e = 7.856766567215773e-16
    sum de = 1.2017802852976352e-31
Info: cfl dt = 46.5512179641888 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    | 5.8659e+04 | 2592 |      1 | 4.419e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3675945.172089658 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 207.73343742826214, dt = 46.5512179641888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (2.4%)
   patch tree reduce : 1.43 us    (1.0%)
   gen split merge   : 971.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 133.12 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.050171365653412e-23,-1.967084908647247e-24,3.673606592013762e-24)
    sum a = (3.4058813989426243e-25,2.195878241524497e-25,-8.093551867928994e-26)
    sum e = 7.85678381399669e-16
    sum de = 2.0029671421627253e-32
Info: cfl dt = 47.50535446012688 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    | 5.9451e+04 | 2592 |      1 | 4.360e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3843804.352749795 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 254.28465539245093, dt = 47.50535446012688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (2.3%)
   patch tree reduce : 1.19 us    (0.8%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.8%)
   LB compute        : 131.15 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0809811774276895e-25,1.6085417730068234e-23,-2.954176945944161e-24)
    sum a = (1.6548238745949505e-27,2.709867139315476e-26,-9.014074804532287e-26)
    sum e = 7.856806234678575e-16
    sum de = 1.8488927466117464e-32
Info: cfl dt = 48.14138226981298 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    | 5.8131e+04 | 2592 |      1 | 4.459e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3835459.741439686 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 301.7900098525778, dt = 48.14138226981298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (2.5%)
   patch tree reduce : 1.45 us    (1.0%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 135.51 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.137606394374147e-24,1.2817811282874197e-23,-7.512325997641438e-24)
    sum a = (3.0205550329159647e-25,-1.994530563189178e-25,-8.688986916239183e-26)
    sum e = 7.856833756886789e-16
    sum de = 3.8518598887744717e-32
Info: cfl dt = 48.565353087569314 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    | 5.8723e+04 | 2592 |      1 | 4.414e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3926364.9674949097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 349.9313921223908, dt = 3.622007194463322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (2.3%)
   patch tree reduce : 1.20 us    (0.8%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 136.69 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0809811774276894e-24,6.642213868802103e-24,-7.748790827365566e-24)
    sum a = (-2.7589173491068996e-25,-5.248224800488283e-26,1.0049557761943285e-25)
    sum e = 7.856762585760285e-16
    sum de = 2.465190328815662e-32
Info: cfl dt = 48.84813730970769 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    | 6.0418e+04 | 2592 |      1 | 4.290e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 303935.8179059956 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 12                                                      [SPH][rank=0]
Info: time since start : 7.74103792 (s)                                               [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006886510000000001 s
sph::RenderFieldGetter compute custom field took :  0.000586398 s
rho_t_ampl=0.000216233, rho_t_phi=3.14159 rad
eps_t_ampl=-1.22466e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.87347e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 707.11s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 353.5533993168541, dt = 48.84813730970769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.65 us   (5.9%)
   patch tree reduce : 1.98 us    (0.9%)
   gen split merge   : 842.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.6%)
   LB compute        : 185.30 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (73.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.689404678956183e-23,4.3446335221207536e-24,-2.500413334602455e-24)
    sum a = (-1.2724592672074807e-26,-5.168033765176787e-26,-6.215570344423603e-26)
    sum e = 7.856857294994188e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 49.036474843621704 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.1687e+04 | 2592 |      1 | 6.218e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2828269.977572692 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 402.4015366265618, dt = 49.036474843621704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (2.8%)
   patch tree reduce : 1.28 us    (0.7%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.9%)
   LB compute        : 156.19 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.010551061311993e-24,1.8300471571344474e-24,-9.520915978431754e-24)
    sum a = (-7.294388419947514e-26,1.2110530930203793e-25,1.56191260258045e-26)
    sum e = 7.856901425542188e-16
    sum de = -8.782240546405795e-32
Info: cfl dt = 49.1620282750389 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.3275e+04 | 2592 |      1 | 5.990e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2947304.6184610017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 451.4380114701835, dt = 49.1620282750389 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (1.9%)
   patch tree reduce : 531.00 ns  (0.4%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 551.00 ns  (0.4%)
   LB compute        : 139.70 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 1.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.010551061311993e-24,1.2020355418670241e-23,-6.84614632873294e-24)
    sum a = (-1.6673604190994575e-25,-2.7432701744972113e-26,1.2830016243466518e-25)
    sum e = 7.856943749613943e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.24572734007322 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.3240e+04 | 2592 |      1 | 5.994e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2952450.203357767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 500.6000397452224, dt = 49.24572734007322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (2.5%)
   patch tree reduce : 1.46 us    (0.7%)
   gen split merge   : 1.07 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.8%)
   LB compute        : 181.35 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2285763850060288e-23,7.01809551561268e-24,2.241902637208677e-24)
    sum a = (-3.5032746790620143e-25,-2.2896823236435103e-26,-4.596786957364457e-26)
    sum e = 7.856990522567956e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 49.30153712186139 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    | 4.9944e+04 | 2592 |      1 | 5.190e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3415977.917269698 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 549.8457670852956, dt = 49.30153712186139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (3.5%)
   patch tree reduce : 2.07 us    (1.4%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 130.83 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.616336797512488e-23,6.000861489700209e-24,-4.315361985175962e-24)
    sum a = (-2.4299584213086306e-25,1.609731491080301e-26,1.1810878901580998e-26)
    sum e = 7.85704162449592e-16
    sum de = -1.7872629883913549e-31
Info: cfl dt = 49.33876759018904 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    | 5.8467e+04 | 2592 |      1 | 4.433e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4003505.544014642 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 599.147304207157, dt = 49.33876759018904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (3.0%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 135.14 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.201723221223749e-23,7.756366353210856e-24,-2.3083372196121793e-24)
    sum a = (-1.9610289741175388e-25,-3.1558742984141076e-26,1.0042065519052433e-26)
    sum e = 7.857096936759386e-16
    sum de = -3.0814879110195774e-32
Info: cfl dt = 49.363625326950924 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    | 5.6133e+04 | 2592 |      1 | 4.618e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3846596.5912010553 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 648.4860717973461, dt = 49.363625326950924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (3.2%)
   patch tree reduce : 1.37 us    (0.9%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (1.0%)
   LB compute        : 137.96 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.434115692194824e-23,5.0230172866209e-24,-1.856259996015734e-24)
    sum a = (-1.2887567750633403e-25,9.518777873325948e-26,5.505473735823637e-26)
    sum e = 7.857156339653347e-16
    sum de = 4.930380657631324e-32
Info: cfl dt = 49.380248002292625 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    | 5.7848e+04 | 2592 |      1 | 4.481e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3966059.2070794837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 697.849697124297, dt = 9.2571015094112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.3%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 651.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 149.20 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.336551288242948e-23,9.032404803874374e-24,-2.356183698996458e-25)
    sum a = (-7.866054849353042e-26,8.883312185402951e-26,-9.315388229935217e-28)
    sum e = 7.856840950946666e-16
    sum de = 6.471124613141112e-32
Info: cfl dt = 49.39131740237549 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    | 5.7790e+04 | 2592 |      1 | 4.485e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 743015.1503375699 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 20                                                      [SPH][rank=0]
Info: time since start : 8.342973180000001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000815521 s
sph::RenderFieldGetter compute custom field took :  0.000706067 s
rho_t_ampl=0.000427001, rho_t_phi=3.14159 rad
eps_t_ampl=-3.4517e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.49728e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1060.66s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 707.1067986337082, dt = 49.39131740237549 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.82 us   (5.1%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 224.46 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.61383959421144e-23,1.3390709427777294e-23,-5.407636204507332e-25)
    sum a = (1.802943147915703e-25,9.395755684743926e-26,1.6175257261070873e-25)
    sum e = 7.857207463365903e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 49.3987754431138 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    | 5.6217e+04 | 2592 |      1 | 4.611e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3856439.801137901 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 756.4981160360837, dt = 49.3987754431138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (1.9%)
   patch tree reduce : 1.15 us    (0.7%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 149.47 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.909030009368118e-23,1.8158582960642464e-23,1.1467206683364907e-23)
    sum a = (-3.8326097031954186e-25,-4.85700748281643e-26,-1.1096856608863698e-25)
    sum e = 7.857287558114466e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 49.403839291715606 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    | 5.7825e+04 | 2592 |      1 | 4.482e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3967366.123288148 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 805.8968914791975, dt = 49.403839291715606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (1.9%)
   patch tree reduce : 1.13 us    (0.8%)
   gen split merge   : 570.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.5%)
   LB compute        : 137.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 692.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.683231951717038e-23,1.2238613524357586e-23,-7.511116667103059e-25)
    sum a = (2.9077261323754e-25,-1.195634734833337e-25,-2.173473025396599e-26)
    sum e = 7.857359178268844e-16
    sum de = -4.3140830754274083e-32
Info: cfl dt = 49.407308585962674 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    | 5.8459e+04 | 2592 |      1 | 4.434e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4011274.663682115 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 855.3007307709131, dt = 49.407308585962674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (2.3%)
   patch tree reduce : 1.16 us    (0.8%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 132.54 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.132401144731626e-23,4.577694152731795e-24,3.7928085107889663e-25)
    sum a = (-3.935597416299945e-25,-1.7145911159570338e-25,-3.426611544464218e-27)
    sum e = 7.857434317877125e-16
    sum de = -6.162975822039155e-32
Info: cfl dt = 49.40972805135935 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    | 5.8822e+04 | 2592 |      1 | 4.407e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4036411.810991196 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 904.7080393568758, dt = 49.40972805135935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (2.3%)
   patch tree reduce : 1.56 us    (1.0%)
   gen split merge   : 681.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 134.80 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.019572396919561e-23,-5.17641444517805e-24,6.622503418826821e-25)
    sum a = (-6.373203129756325e-25,7.548640316091854e-27,-1.6462127064659875e-25)
    sum e = 7.8575128582444175e-16
    sum de = -4.1600086798764294e-32
Info: cfl dt = 49.41146081381333 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    | 5.7398e+04 | 2592 |      1 | 4.516e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3938895.9990496975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 954.1177674082352, dt = 49.41146081381333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.5%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 139.68 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2470271315638574e-22,-3.810231971254873e-25,-1.1454219256576867e-23)
    sum a = (1.2454430138002677e-25,2.903507781033141e-26,5.069587733151487e-26)
    sum e = 7.857594648058325e-16
    sum de = 3.8518598887744717e-32
Info: cfl dt = 49.41274890003756 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    | 5.7737e+04 | 2592 |      1 | 4.489e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3962312.7413342893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1003.5292282220485, dt = 49.41274890003756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (1.8%)
   patch tree reduce : 761.00 ns  (0.5%)
   gen split merge   : 651.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.5%)
   LB compute        : 148.44 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0444526191479867e-22,1.5847696639037641e-24,-3.629629189794366e-24)
    sum a = (-1.5950872400309736e-25,1.1341255993774046e-25,-1.243414891027973e-25)
    sum e = 7.857679527966864e-16
    sum de = -4.0059342843254506e-32
Info: cfl dt = 49.41375359653153 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    | 5.7603e+04 | 2592 |      1 | 4.500e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3953243.4020299995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1052.941977122086, dt = 7.718220828476433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (1.5%)
   patch tree reduce : 451.00 ns  (0.3%)
   gen split merge   : 691.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.5%)
   LB compute        : 154.81 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1099234691683252e-22,4.5450615273865625e-24,-8.913862978703659e-24)
    sum a = (1.2122838535858463e-25,-8.81341115561493e-27,3.1660652180154463e-26)
    sum e = 7.856946622185241e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 49.41426066018379 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    | 5.9258e+04 | 2592 |      1 | 4.374e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 635230.643284198 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 28                                                      [SPH][rank=0]
Info: time since start : 8.887881721000001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000779837 s
sph::RenderFieldGetter compute custom field took :  0.000703954 s
rho_t_ampl=0.00062697, rho_t_phi=3.14159 rad
eps_t_ampl=-6.34642e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.88098e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1414.21s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 1060.6601979505624, dt = 49.41426066018379 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.29 us   (5.7%)
   patch tree reduce : 2.13 us    (1.0%)
   gen split merge   : 1.00 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 189.30 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.910489454059068e-23,3.637378095626728e-24,-6.747345771133935e-24)
    sum a = (-3.25994035022953e-25,-1.6676030697948476e-25,-1.4368351742007992e-25)
    sum e = 7.857747026738888e-16
    sum de = 7.472608184222475e-32
Info: cfl dt = 49.41493532122788 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    | 5.6162e+04 | 2592 |      1 | 4.615e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3854436.026770495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1110.0744586107462, dt = 49.41493532122788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (3.0%)
   patch tree reduce : 1.58 us    (1.0%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 141.04 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.302741541189008e-22,-8.505594130705973e-24,-1.817970874210729e-23)
    sum a = (6.268899079478825e-26,-8.822054515400264e-27,2.8145891323554753e-26)
    sum e = 7.857854781726609e-16
    sum de = 5.777789833161708e-32
Info: cfl dt = 49.415570051559584 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    | 5.6148e+04 | 2592 |      1 | 4.616e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3853511.922389074 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1159.489393931974, dt = 49.415570051559584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.9%)
   patch tree reduce : 1.93 us    (1.2%)
   gen split merge   : 1.11 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 142.00 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.187461495466922e-22,-5.038838405785588e-24,-1.2543393918070583e-23)
    sum a = (-3.114328385809679e-25,5.182127583568963e-26,5.262840036771237e-26)
    sum e = 7.857948376476239e-16
    sum de = 3.004450713244088e-32
Info: cfl dt = 49.416179959089064 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    | 5.4754e+04 | 2592 |      1 | 4.734e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3757914.867917335 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1208.9049639835337, dt = 49.416179959089064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.9%)
   patch tree reduce : 1.62 us    (1.1%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 134.27 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.399535699846528e-22,-9.799566108283187e-25,-9.337790844186662e-24)
    sum a = (4.276215330487406e-26,6.287503115640006e-26,-9.965216540454763e-26)
    sum e = 7.858044261443093e-16
    sum de = 8.628166150854817e-32
Info: cfl dt = 49.416785993051576 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    | 5.5383e+04 | 2592 |      1 | 4.680e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3801124.64939345 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1258.3211439426227, dt = 49.416785993051576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (3.0%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 146.13 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.312754730015648e-22,2.4003220300999755e-24,-1.8024842496963164e-23)
    sum a = (-9.949001718776914e-26,-2.1392212629860175e-25,-6.386688387921203e-26)
    sum e = 7.858142321524148e-16
    sum de = 1.9259299443872359e-32
Info: cfl dt = 49.4174020714632 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    | 5.6327e+04 | 2592 |      1 | 4.602e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3865967.461562253 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1307.7379299356744, dt = 49.4174020714632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.6%)
   patch tree reduce : 1.45 us    (0.8%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 159.82 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.386184781411008e-22,-1.501025546613656e-23,-2.0296781177255552e-23)
    sum a = (1.133554354097541e-25,-2.452620184335606e-25,9.311571098327027e-26)
    sum e = 7.8582423663955435e-16
    sum de = -3.389636702121535e-32
Info: cfl dt = 49.41803737089574 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    | 5.5003e+04 | 2592 |      1 | 4.712e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3775180.171607238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1357.1553320071375, dt = 49.41803737089574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.4%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 156.13 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2683372513743989e-22,-2.7904843681692486e-23,-1.1816349487794207e-23)
    sum a = (-9.304623331245244e-26,6.77493473956818e-26,1.3183701876922623e-26)
    sum e = 7.85834419971914e-16
    sum de = -2.311115933264683e-32
Info: cfl dt = 49.41869789950251 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    | 5.5830e+04 | 2592 |      1 | 4.643e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3831936.787315867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1406.5733693780332, dt = 7.640227889383141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.9%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 140.09 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3374025794350694e-22,-1.9653616038982963e-23,-1.3690664507602505e-23)
    sum a = (2.8360170978096186e-25,-6.904624313049767e-26,1.3918125102224075e-25)
    sum e = 7.857082609676154e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 49.41883165132527 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    | 5.7416e+04 | 2592 |      1 | 4.514e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609262.5390179064 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 9.445652395 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008386060000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007339590000000001 s
rho_t_ampl=0.000811084, rho_t_phi=3.14159 rad
eps_t_ampl=-9.81955e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.04017e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1767.77s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 1414.2135972674164, dt = 49.41883165132527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.00 us   (4.8%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 241.76 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (77.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.191569470370159e-22,-2.3588009947010476e-23,-6.331164699825971e-24)
    sum a = (7.785194137298971e-27,1.1592190113003619e-26,-6.827785174059458e-26)
    sum e = 7.858423656367634e-16
    sum de = -7.703719777548943e-32
Info: cfl dt = 49.4195063587475 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    | 5.6511e+04 | 2592 |      1 | 4.587e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3878768.0165082854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1463.6324289187417, dt = 49.4195063587475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.7%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.9%)
   LB compute        : 151.22 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2580673141163065e-22,-2.102263177196416e-23,-1.4831615665065902e-23)
    sum a = (1.7338041049733457e-26,1.5187049146758756e-25,-5.783869824377549e-26)
    sum e = 7.858548094716464e-16
    sum de = -1.4637067577342992e-32
Info: cfl dt = 49.42022947853487 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    | 5.7658e+04 | 2592 |      1 | 4.495e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3957568.030032967 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1513.051935277489, dt = 49.42022947853487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (3.6%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 140.73 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2619185405880911e-22,-1.0050171632928287e-23,-1.743206849870968e-23)
    sum a = (-2.625904611914078e-25,1.3041581158706351e-25,2.568437670233444e-25)
    sum e = 7.858654382398339e-16
    sum de = 1.0014835710813626e-32
Info: cfl dt = 49.420987003451195 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    | 5.7785e+04 | 2592 |      1 | 4.486e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3966300.471831455 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1562.4721647560239, dt = 49.420987003451195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.8%)
   patch tree reduce : 1.31 us    (0.8%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 138.00 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4642363045725095e-22,-4.1349535470106185e-24,3.0372437964566976e-24)
    sum a = (-1.858041261013012e-25,-1.6020984004868732e-25,2.5852707026409987e-26)
    sum e = 7.85876147417202e-16
    sum de = -5.854827030937197e-32
Info: cfl dt = 49.42177929056361 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    | 5.7497e+04 | 2592 |      1 | 4.508e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3946618.022121406 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1611.8931517594751, dt = 49.42177929056361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.6%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 134.19 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5171264814516848e-22,-1.9236073887715847e-23,-1.3929725098295317e-24)
    sum a = (-4.257159782840555e-25,1.633356511257291e-25,6.11973157425806e-26)
    sum e = 7.858869292105351e-16
    sum de = -6.471124613141112e-32
Info: cfl dt = 49.422606505234725 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    | 5.8418e+04 | 2592 |      1 | 4.437e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4009921.7027379316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1661.3149310500387, dt = 49.422606505234725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (1.9%)
   patch tree reduce : 1.29 us    (0.8%)
   gen split merge   : 611.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.6%)
   LB compute        : 147.67 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7795233783959428e-22,-3.167082165084645e-24,2.504955070832226e-24)
    sum a = (-9.83868012713725e-26,6.880011550284278e-26,-2.4307590651456965e-26)
    sum e = 7.858977626531729e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 49.423468612247646 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    | 5.8236e+04 | 2592 |      1 | 4.451e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3997459.085819872 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1710.7375375552733, dt = 49.423468612247646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (2.0%)
   patch tree reduce : 991.00 ns  (0.6%)
   gen split merge   : 461.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.6%)
   LB compute        : 150.86 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7512810509361892e-22,-2.1042840681705425e-24,-8.093480442588676e-25)
    sum a = (3.8788068696945276e-26,1.7976596799993307e-25,-7.154715418419572e-27)
    sum e = 7.859086264470484e-16
    sum de = 3.543711097672514e-32
Info: cfl dt = 49.42436543578114 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    | 5.8763e+04 | 2592 |      1 | 4.411e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4033713.9201832106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1760.161006167521, dt = 7.6059904167495915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.9%)
   patch tree reduce : 1.31 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 143.47 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.691972163270706e-22,2.0049946356948455e-24,-4.398894458188555e-25)
    sum a = (-9.762207205659756e-26,1.1214037001035632e-26,4.9343656468511565e-26)
    sum e = 7.857231914354544e-16
    sum de = -2.619264724366641e-32
Info: cfl dt = 49.42452047564791 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    | 5.7433e+04 | 2592 |      1 | 4.513e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 606712.5269091098 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 9.998811131 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000668941 s
sph::RenderFieldGetter compute custom field took :  0.000606848 s
rho_t_ampl=0.00097469, rho_t_phi=3.14159 rad
eps_t_ampl=-1.37848e-07, eps_t_phi=6.28319 rad
vx_t_ampl=6.99612e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2121.32s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 1767.7669965842706, dt = 49.42452047564791 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.62 us   (4.9%)
   patch tree reduce : 2.55 us    (1.1%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 211.27 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7756721519241582e-22,1.918843501859872e-24,2.213760151216833e-24)
    sum a = (1.5925172484075496e-25,9.309402888837587e-26,4.11270002281298e-29)
    sum e = 7.859169914009437e-16
    sum de = -4.391120273202898e-32
Info: cfl dt = 49.425443722544706 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.2124e+04 | 2592 |      1 | 6.153e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2891586.9411971075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1817.1915170599186, dt = 49.425443722544706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (2.6%)
   patch tree reduce : 2.02 us    (1.2%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 156.46 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.647554684629457e-22,8.544658003382017e-24,9.974159328443954e-25)
    sum a = (1.891012373059866e-25,-1.845477782526171e-25,-1.0715953039699835e-26)
    sum e = 7.859298497257902e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 49.426414045065854 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.2948e+04 | 2592 |      1 | 6.035e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2948213.1922443407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1866.6169607824634, dt = 49.426414045065854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (2.7%)
   patch tree reduce : 1.91 us    (1.0%)
   gen split merge   : 1.10 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 165.29 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5538415071493647e-22,-7.438684047194392e-24,2.0192807395236828e-25)
    sum a = (-1.0090664671677845e-25,-1.282782328072911e-26,1.838266779173285e-26)
    sum e = 7.859406898002867e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 49.42741816671433 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    | 4.3184e+04 | 2592 |      1 | 6.002e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2964484.1791363074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1916.0433748275293, dt = 49.42741816671433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (2.5%)
   patch tree reduce : 1.74 us    (0.9%)
   gen split merge   : 842.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.6%)
   LB compute        : 185.33 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6431899612947677e-22,-3.8278082066501925e-24,1.8296561225944318e-24)
    sum a = (-4.001414274948608e-25,8.268331015316812e-26,-2.743668798372017e-26)
    sum e = 7.8595145122546e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 49.42845549655906 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.2745e+04 | 2592 |      1 | 6.064e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2934413.2010729928 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1965.4707929942435, dt = 49.42845549655906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (2.6%)
   patch tree reduce : 1.92 us    (1.0%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.8%)
   LB compute        : 174.74 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9464098588399428e-22,2.61923517023768e-24,-6.588632174006013e-25)
    sum a = (3.06518513135201e-26,-5.365028911966947e-26,5.200039857090651e-26)
    sum e = 7.859621329162048e-16
    sum de = 4.776306262080345e-32
Info: cfl dt = 49.429525545117365 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.2245e+04 | 2592 |      1 | 6.136e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2900123.218304012 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2014.8992484908026, dt = 49.429525545117365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.7%)
   patch tree reduce : 1.58 us    (0.8%)
   gen split merge   : 951.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.7%)
   LB compute        : 183.12 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 742.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8082792027186014e-22,-3.404474171821993e-24,3.8747180608838105e-24)
    sum a = (8.449630996037853e-26,-1.9113969903077025e-26,-7.275822804116008e-26)
    sum e = 7.859727140755e-16
    sum de = 3.8518598887744717e-32
Info: cfl dt = 49.430627800758785 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.2359e+04 | 2592 |      1 | 6.119e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2908010.828360795 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2064.32877403592, dt = 49.430627800758785 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.1%)
   patch tree reduce : 1.54 us    (0.8%)
   gen split merge   : 811.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 180.15 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 742.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7574430132910446e-22,-3.4936842225160665e-24,-2.805146689410905e-24)
    sum a = (1.2724592672074807e-26,8.745155547293124e-26,1.1802211021334127e-25)
    sum e = 7.859831738766094e-16
    sum de = -5.46964104205975e-32
Info: cfl dt = 49.43176173095154 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.2330e+04 | 2592 |      1 | 6.123e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2906139.792856335 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2113.759401836679, dt = 7.560994064445822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.1%)
   patch tree reduce : 1.70 us    (0.9%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.8%)
   LB compute        : 181.93 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 842.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.735362648186146e-22,-2.0173807416652986e-25,2.8024137313649076e-24)
    sum a = (1.5738377970958338e-25,1.5238096388913044e-25,2.0414625716209282e-25)
    sum e = 7.857379375485295e-16
    sum de = -2.1570415377137042e-32
Info: cfl dt = 49.431949084396415 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    | 5.8032e+04 | 2592 |      1 | 4.467e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609411.9247775447 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 52                                                      [SPH][rank=0]
Info: time since start : 10.653754743 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006732680000000001 s
sph::RenderFieldGetter compute custom field took :  0.000562152 s
rho_t_ampl=0.00111365, rho_t_phi=3.14159 rad
eps_t_ampl=-1.81419e-07, eps_t_phi=6.28319 rad
vx_t_ampl=5.77525e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2474.87s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 2121.320395901125, dt = 49.431949084396415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.90 us   (5.0%)
   patch tree reduce : 2.12 us    (0.9%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.7%)
   LB compute        : 212.05 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.68683719464166e-22,7.57788983737244e-24,1.3219353203117036e-23)
    sum a = (1.7943556149301154e-25,-2.259199911564309e-25,1.1159988217736507e-25)
    sum e = 7.859911274374362e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 49.43310807080794 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.1426e+04 | 2592 |      1 | 6.257e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2844145.8365240498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2170.752344985521, dt = 49.43310807080794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (2.0%)
   patch tree reduce : 1.07 us    (0.6%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 161.92 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5705301551937646e-22,-1.2938917436923863e-23,1.644870839139168e-23)
    sum a = (1.3852881677480456e-25,1.0106511647465574e-25,1.5125795132780696e-25)
    sum e = 7.860031042973891e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 49.434308143467625 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.1843e+04 | 2592 |      1 | 6.195e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2872784.868402149 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2220.185453056329, dt = 49.434308143467625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.5%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.9%)
   LB compute        : 155.32 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5068565441935925e-22,1.3820286661768738e-25,2.4906251375573156e-23)
    sum a = (1.685413043185948e-25,2.8495173891729097e-26,1.7988305595437421e-25)
    sum e = 7.86013075482356e-16
    sum de = 1.8488927466117464e-32
Info: cfl dt = 49.435538248006296 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.2952e+04 | 2592 |      1 | 6.035e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2949005.2269321894 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2269.619761199797, dt = 49.435538248006296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (2.3%)
   patch tree reduce : 2.15 us    (1.1%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 178.15 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4259807882861155e-22,-2.457162722883411e-25,3.4506398189741365e-23)
    sum a = (7.533209592758376e-26,-1.2660137203805932e-25,4.975717902424662e-26)
    sum e = 7.860228144546755e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 49.43679762672564 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.2004e+04 | 2592 |      1 | 6.171e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2884006.7888271576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2319.055299447803, dt = 49.43679762672564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (2.9%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 1.08 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 151.71 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4044139200441217e-22,-1.0338537229620961e-23,3.374981239662521e-23)
    sum a = (-1.1325514305371804e-25,-9.340166393750601e-26,-1.9697175058555063e-25)
    sum e = 7.860323291439586e-16
    sum de = 3.389636702121535e-32
Info: cfl dt = 49.438085658404326 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    | 5.7927e+04 | 2592 |      1 | 4.475e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3977379.6785876737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2368.492097074529, dt = 49.438085658404326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.1%)
   patch tree reduce : 1.05 us    (0.6%)
   gen split merge   : 801.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.9%)
   LB compute        : 163.86 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.51494411978434e-22,-1.413510436736592e-23,1.791316203800785e-23)
    sum a = (-6.18051644072205e-26,8.381424358593018e-26,-5.339059481149629e-26)
    sum e = 7.860416009984607e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 49.439401708257456 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    | 5.7108e+04 | 2592 |      1 | 4.539e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3921270.769054717 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2417.930182732933, dt = 49.439401708257456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (2.2%)
   patch tree reduce : 1.31 us    (0.7%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.6%)
   LB compute        : 172.53 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.529835528808574e-22,-5.61446638325454e-24,1.8822751712711954e-23)
    sum a = (4.1846985556045033e-26,8.835164019165329e-26,-1.2694962944922014e-25)
    sum e = 7.860506117450503e-16
    sum de = -8.08890576642639e-33
Info: cfl dt = 49.440745127231565 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    | 5.7995e+04 | 2592 |      1 | 4.469e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3982275.6818144806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2467.3695844411905, dt = 7.504210776788568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.6%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 148.04 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5100658995867464e-22,-4.8349941921423005e-24,1.6051737603933383e-23)
    sum a = (3.8814395440404743e-25,-7.748696142692685e-26,4.912679973721758e-26)
    sum e = 7.857510307892911e-16
    sum de = -2.2340787354891936e-32
Info: cfl dt = 49.440959934405726 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    | 5.9965e+04 | 2592 |      1 | 4.323e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 624982.7224799641 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 60                                                      [SPH][rank=0]
Info: time since start : 11.266462097000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007592460000000001 s
sph::RenderFieldGetter compute custom field took :  0.000677535 s
rho_t_ampl=0.00122446, rho_t_phi=3.14159 rad
eps_t_ampl=-2.27807e-07, eps_t_phi=6.28319 rad
vx_t_ampl=4.40845e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2828.43s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 2474.873795217979, dt = 49.440959934405726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.43 us   (5.2%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 213.46 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3131398526628264e-22,-9.289880354907944e-24,1.9141271060163683e-23)
    sum a = (-2.3447099186779815e-25,7.317791602051826e-26,2.3959246499662953e-26)
    sum e = 7.860573658921793e-16
    sum de = -1.502225356622044e-32
Info: cfl dt = 49.44232590168062 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    | 5.7978e+04 | 2592 |      1 | 4.471e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3981208.529214447 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2524.314755152385, dt = 49.44232590168062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.9%)
   patch tree reduce : 2.56 us    (1.6%)
   gen split merge   : 1.93 us    (1.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 139.30 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5623142053872907e-22,-1.9497836936969956e-24,1.970371793833373e-23)
    sum a = (2.2036737930022757e-25,-1.6602498477633075e-25,-6.608886921019645e-27)
    sum e = 7.860672522956878e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 49.443725777097555 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    | 5.8012e+04 | 2592 |      1 | 4.468e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3983694.1139818686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2573.7570810540656, dt = 49.443725777097555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.6%)
   patch tree reduce : 1.80 us    (1.2%)
   gen split merge   : 1.11 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 132.43 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3569154602254448e-22,-1.607164947006616e-23,1.8621270138312572e-23)
    sum a = (1.520181386616543e-25,-8.488288606318548e-26,-1.2554227302330098e-25)
    sum e = 7.860753603674421e-16
    sum de = 0
Info: cfl dt = 49.445117960810094 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    | 5.8299e+04 | 2592 |      1 | 4.446e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4003484.539589913 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2623.200806831163, dt = 49.445117960810094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.3%)
   patch tree reduce : 1.52 us    (0.8%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.7%)
   LB compute        : 174.49 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2964512046184265e-22,-1.8262335402961765e-23,9.473562775509023e-24)
    sum a = (-1.9053040337950043e-25,-1.25850648494098e-25,-5.3319359976484624e-27)
    sum e = 7.86083103060583e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 49.44651006781 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    | 5.8796e+04 | 2592 |      1 | 4.408e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4037731.5121805435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2672.645924791973, dt = 49.44651006781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (2.5%)
   patch tree reduce : 1.61 us    (1.0%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 136.69 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 692.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4759183582035894e-22,-2.549692450562278e-23,1.2181824295708467e-23)
    sum a = (-1.9306278536941087e-27,1.0419504110536305e-25,-1.61785313136289e-25)
    sum e = 7.860904988174383e-16
    sum de = -6.548161810916602e-33
Info: cfl dt = 49.44792603190051 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    | 5.9365e+04 | 2592 |      1 | 4.366e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4076905.6480400474 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2722.0924348597828, dt = 49.44792603190051 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.8%)
   patch tree reduce : 1.29 us    (0.8%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 135.93 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4240551750502234e-22,-1.4659232220010358e-23,3.1383935478426485e-25)
    sum a = (-6.829909446055522e-26,3.1021483492895186e-26,-7.428217260685127e-26)
    sum e = 7.860975335158785e-16
    sum de = -1.9644485432749806e-32
Info: cfl dt = 49.44936515282483 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    | 5.9427e+04 | 2592 |      1 | 4.362e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4081324.9385360624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2771.540360891683, dt = 49.44936515282483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (2.4%)
   patch tree reduce : 1.45 us    (0.8%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 158.79 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4783574683023862e-22,-1.493262918256465e-23,-1.1959425125765756e-24)
    sum a = (-1.88913189138419e-25,-1.318677980892457e-25,-6.65293311753369e-26)
    sum e = 7.861041932749721e-16
    sum de = 2.6963019221421302e-33
Info: cfl dt = 49.450826718632314 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    | 5.7492e+04 | 2592 |      1 | 4.508e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3948561.366164085 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2820.9897260445077, dt = 7.437468490325045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (2.8%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 157.84 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5094240285081156e-22,-1.9938822426460502e-23,-1.499065773412927e-24)
    sum a = (1.9167122892941057e-25,1.4279814679998987e-25,2.337167731758773e-25)
    sum e = 7.857611779893713e-16
    sum de = -7.318533788671496e-33
Info: cfl dt = 49.45105400900269 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    | 5.9184e+04 | 2592 |      1 | 4.380e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 611357.0124800509 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 12.010586023 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006755810000000001 s
sph::RenderFieldGetter compute custom field took :  0.000541281 s
rho_t_ampl=0.00130431, rho_t_phi=3.14159 rad
eps_t_ampl=-2.75838e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.9303e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3181.98s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 2828.427194534833, dt = 49.45105400900269 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.08 us   (5.1%)
   patch tree reduce : 2.27 us    (1.1%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 189.40 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4123731214191433e-22,-1.1857765838855162e-23,1.1175010469941887e-23)
    sum a = (2.232006383582462e-25,5.413745140377431e-26,1.771884119376355e-26)
    sum e = 7.861090821818707e-16
    sum de = 1.1555579666323415e-32
Info: cfl dt = 49.4525353380744 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    | 5.7839e+04 | 2592 |      1 | 4.481e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3972482.5521406718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2877.8782485438355, dt = 49.4525353380744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.7%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 134.61 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2869515126546912e-22,-1.1369542649671633e-23,6.710589390088923e-24)
    sum a = (-1.6901769300976606e-25,6.328604372681541e-27,1.0819829444048442e-25)
    sum e = 7.86115876104294e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 49.45404252666251 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    | 5.9115e+04 | 2592 |      1 | 4.385e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4060256.926077095 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2927.33078388191, dt = 49.45404252666251 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.4%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 137.19 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4768811648215354e-22,-1.2238475622368037e-23,1.4298651624191645e-23)
    sum a = (-1.159505001221871e-25,-6.60577953633588e-26,-1.1403040929318697e-25)
    sum e = 7.861213114217429e-16
    sum de = -1.925929944387236e-33
Info: cfl dt = 49.45557002481608 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    | 6.0061e+04 | 2592 |      1 | 4.316e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4125386.3171733385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2976.7848264085724, dt = 49.45557002481608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (1.9%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.6%)
   LB compute        : 149.33 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5163562361573278e-22,-1.729932820030354e-23,3.1641588498732334e-24)
    sum a = (-1.7119905175355032e-25,-1.3751345461169342e-25,7.279759428394215e-26)
    sum e = 7.861262832375054e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.45711689590888 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    | 5.8733e+04 | 2592 |      1 | 4.413e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4034270.169930731 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3026.2403964333885, dt = 49.45711689590888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.4%)
   patch tree reduce : 1.91 us    (1.1%)
   gen split merge   : 1.10 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 154.20 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6216872801606369e-22,-2.586810651531223e-23,1.1384360686874573e-23)
    sum a = (-2.3781824925050157e-26,-1.2600681662075767e-25,-1.5122012609482263e-25)
    sum e = 7.861308207243586e-16
    sum de = -1.8681520460556188e-32
Info: cfl dt = 49.45868237287137 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    | 5.1971e+04 | 2592 |      1 | 4.987e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3569939.651503403 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3075.697513329297, dt = 49.45868237287137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (2.7%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 1.19 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.9%)
   LB compute        : 151.77 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5921612105436215e-22,-3.181343738112972e-23,-1.634422789799141e-24)
    sum a = (2.982443937622263e-26,-3.3711355823143507e-26,5.619219310931872e-26)
    sum e = 7.86134914998775e-16
    sum de = -7.51112678311022e-33
Info: cfl dt = 49.46026567961113 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    | 5.5725e+04 | 2592 |      1 | 4.651e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3827916.997120105 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3125.1561957021686, dt = 49.46026567961113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.4%)
   patch tree reduce : 1.24 us    (0.7%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.9%)
   LB compute        : 156.19 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.566550554506254e-22,-3.1199246992764907e-23,6.274028018381761e-24)
    sum a = (5.850805320253511e-26,1.760796852359613e-27,-3.32761451233949e-26)
    sum e = 7.861385579691712e-16
    sum de = 3.4666738998970245e-33
Info: cfl dt = 49.461866030987416 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    | 5.8446e+04 | 2592 |      1 | 4.435e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4014914.84161887 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3174.6164613817796, dt = 7.3641324699074175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (2.0%)
   patch tree reduce : 791.00 ns  (0.5%)
   gen split merge   : 601.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.6%)
   LB compute        : 144.87 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 1.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5553178106302155e-22,-3.0308349994096605e-23,3.8164141881539275e-24)
    sum a = (1.9227298306562692e-25,2.131796298619715e-25,-9.206519369513245e-26)
    sum e = 7.857673930014489e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 49.46210841402662 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    | 6.1844e+04 | 2592 |      1 | 4.191e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 632539.7331845901 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 76                                                      [SPH][rank=0]
Info: time since start : 12.557851132000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007061670000000001 s
sph::RenderFieldGetter compute custom field took :  0.00060788 s
rho_t_ampl=0.00135119, rho_t_phi=3.14159 rad
eps_t_ampl=-3.24295e-07, eps_t_phi=6.28319 rad
vx_t_ampl=1.37817e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3535.53s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 3181.980593851687, dt = 49.46210841402662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.03 us   (5.4%)
   patch tree reduce : 1.95 us    (1.0%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.6%)
   LB compute        : 178.00 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4479327791752878e-22,-1.8987850306526605e-23,-9.537895742847449e-25)
    sum a = (1.7200139060183879e-25,-6.130859971473728e-27,-6.066196531977481e-27)
    sum e = 7.861411079037307e-16
    sum de = 1.2518544638517033e-32
Info: cfl dt = 49.46372508678392 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    | 5.8596e+04 | 2592 |      1 | 4.424e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4025369.9964179276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3231.4427022657137, dt = 49.46372508678392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.7%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 137.77 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3714538401564319e-22,-2.471213681964063e-23,8.729996087273788e-25)
    sum a = (-4.125275334653139e-25,6.716718161025375e-26,9.185299436949195e-26)
    sum e = 7.861441176626811e-16
    sum de = -2.0222264416065976e-33
Info: cfl dt = 49.46535918124515 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    | 6.0436e+04 | 2592 |      1 | 4.289e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4151917.993633769 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3280.9064273524978, dt = 49.46535918124515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.5%)
   patch tree reduce : 1.12 us    (0.7%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 141.95 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.724033623648313e-22,-1.9579876084207452e-23,7.838264936822594e-24)
    sum a = (-4.04002683202249e-25,-9.058481012327257e-26,6.721505145147296e-26)
    sum e = 7.861463393379277e-16
    sum de = -3.4666738998970245e-33
Info: cfl dt = 49.466999564413214 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    | 6.1317e+04 | 2592 |      1 | 4.227e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4212602.601868523 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3330.371786533743, dt = 49.466999564413214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.1%)
   patch tree reduce : 1.19 us    (0.6%)
   gen split merge   : 741.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 168.92 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9203017527166363e-22,-2.796331412526151e-23,1.0553829509736643e-23)
    sum a = (-2.3737947019284385e-25,1.3809101713468622e-26,-9.50826636110513e-26)
    sum e = 7.861480429816168e-16
    sum de = -8.185202263645752e-34
Info: cfl dt = 49.468557207586414 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    | 6.1201e+04 | 2592 |      1 | 4.235e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4204735.088995674 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3379.838786098156, dt = 49.468557207586414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.3%)
   patch tree reduce : 1.29 us    (0.7%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 160.04 us  (85.8%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9965078965270744e-22,-2.4700803783408555e-23,1.836036825278248e-24)
    sum a = (-3.1283693156547267e-25,-1.6642262829733307e-26,-4.00147725790046e-26)
    sum e = 7.861492664866158e-16
    sum de = 1.0592614694129797e-33
Info: cfl dt = 49.46998695776424 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    | 6.0382e+04 | 2592 |      1 | 4.293e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4148602.5848689945 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3429.3073433057425, dt = 49.46998695776424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.4%)
   patch tree reduce : 1.66 us    (1.0%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.9%)
   LB compute        : 155.95 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1704549588360125e-22,-2.6270780324797e-23,1.2185711065916392e-24)
    sum a = (1.8154170096976875e-25,-3.384396895798025e-26,3.2806394353565785e-26)
    sum e = 7.861500066740689e-16
    sum de = -1.8168440686309276e-34
Info: cfl dt = 49.47022280386447 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    | 5.9373e+04 | 2592 |      1 | 4.366e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4079392.389263343 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3478.777330263507, dt = 49.47022280386447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.7%)
   patch tree reduce : 1.41 us    (1.0%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (1.0%)
   LB compute        : 133.00 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9578833043704678e-22,-2.8373911030873125e-23,4.6427418338606245e-24)
    sum a = (1.856286144782381e-25,1.719533501715305e-25,-2.2182085768191625e-26)
    sum e = 7.861502451817994e-16
    sum de = 1.3240768367662246e-33
Info: cfl dt = 49.47015036198972 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    | 6.1744e+04 | 2592 |      1 | 4.198e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4242359.42683365 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3528.2475530673714, dt = 7.286440101169774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (2.5%)
   patch tree reduce : 1.75 us    (1.1%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 137.09 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 732.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9431684098928574e-22,-2.203563471410636e-23,3.120967212952953e-24)
    sum a = (3.2419504088655617e-26,1.0374597816354145e-25,-3.0421127694341786e-26)
    sum e = 7.85769089083232e-16
    sum de = -1.4444474582904269e-34
Info: cfl dt = 49.470104286954104 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    | 4.9837e+04 | 2592 |      1 | 5.201e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 504349.9975612555 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 84                                                      [SPH][rank=0]
Info: time since start : 13.093672640000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007603680000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006396980000000001 s
rho_t_ampl=0.00136391, rho_t_phi=3.14159 rad
eps_t_ampl=-3.71953e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.0868e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3889.09s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 3535.533993168541, dt = 49.470104286954104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.94 us   (6.0%)
   patch tree reduce : 2.18 us    (1.0%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.8%)
   LB compute        : 186.67 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9329626597426283e-22,-1.7147987035045128e-23,1.5860142106420022e-24)
    sum a = (1.9331351625950103e-26,8.906685984981081e-26,1.2368932877188336e-26)
    sum e = 7.861501851664419e-16
    sum de = -1.925929944387236e-34
Info: cfl dt = 49.468940683070535 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    | 6.0525e+04 | 2592 |      1 | 4.283e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4158604.31714848 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3585.0040974554954, dt = 49.468940683070535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (2.8%)
   patch tree reduce : 1.33 us    (0.7%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 163.03 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9252281132451275e-22,-1.3106205086792007e-23,3.256306596924555e-24)
    sum a = (2.2014172149914643e-25,-1.5591396780818385e-25,-9.362353830398962e-28)
    sum e = 7.861490507286643e-16
    sum de = -1.3481509610710651e-33
Info: cfl dt = 49.46737430453776 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    | 5.1067e+04 | 2592 |      1 | 5.076e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3508676.26435151 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3634.473038138566, dt = 49.46737430453776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (2.7%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 961.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.7%)
   LB compute        : 164.81 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7645998758177776e-22,-2.68807584342083e-23,2.8808972010724127e-24)
    sum a = (-1.4551167206381507e-25,1.7562425608013347e-25,-2.882023320468422e-25)
    sum e = 7.861477866932783e-16
    sum de = -9.62964972193618e-35
Info: cfl dt = 49.46578495670764 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    | 5.8462e+04 | 2592 |      1 | 4.434e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4016606.596905348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3683.940412443104, dt = 49.46578495670764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.2%)
   patch tree reduce : 1.24 us    (0.6%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.7%)
   LB compute        : 177.56 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9329626597426283e-22,-9.993932694281068e-24,-1.8480407144317976e-23)
    sum a = (8.455899268290106e-26,1.1432598922043703e-25,-4.6850961004030373e-26)
    sum e = 7.861460002655481e-16
    sum de = 5.7777898331617076e-34
Info: cfl dt = 49.46414277827948 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6712e+04 | 2592 |      1 | 5.549e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3209208.3185313437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3733.4061973998114, dt = 49.46414277827948 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.5%)
   patch tree reduce : 1.42 us    (0.8%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 155.14 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.828883264342649e-22,-5.8478466957504464e-24,-1.4828532259225485e-23)
    sum a = (3.9080170183900296e-25,3.721453647812174e-26,-1.9069636105679978e-25)
    sum e = 7.861437389625003e-16
    sum de = -1.5792625543975334e-32
Info: cfl dt = 49.46251601009535 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0121e+04 | 2592 |      1 | 6.460e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2756306.5842606295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3782.870340178091, dt = 49.46251601009535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.4%)
   patch tree reduce : 1.65 us    (0.8%)
   gen split merge   : 1.19 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 179.41 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5627635151423324e-22,-5.9164466672791096e-24,-2.78184487741579e-23)
    sum a = (1.0086903708326493e-25,-1.3451134396987971e-25,3.278743327133499e-26)
    sum e = 7.861410084945503e-16
    sum de = 1.1940765655200862e-32
Info: cfl dt = 49.46090545601917 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3515e+04 | 2592 |      1 | 5.957e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2989418.6154963435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3832.3328561881863, dt = 49.46090545601917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (2.4%)
   patch tree reduce : 1.94 us    (1.0%)
   gen split merge   : 1.30 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.4%)
   LB compute        : 183.13 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5833675767663801e-22,-1.682484506389695e-23,-2.06697172595039e-23)
    sum a = (1.9916808254310588e-25,5.1555021177599764e-26,-5.46781949321956e-26)
    sum e = 7.861378144665888e-16
    sum de = -9.62964972193618e-34
Info: cfl dt = 49.45931191161338 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2905e+04 | 2592 |      1 | 6.041e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2947413.407894446 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3881.7937616442055, dt = 7.293630841189497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (2.5%)
   patch tree reduce : 1.75 us    (0.9%)
   gen split merge   : 972.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 187.03 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5435073827834094e-22,-1.184151847717732e-23,-2.3231584412015113e-23)
    sum a = (-9.540310367929979e-26,3.028868818699286e-25,-1.4878072925021628e-25)
    sum e = 7.857663298082192e-16
    sum de = -1.1362986671884692e-32
Info: cfl dt = 49.45908158793109 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4073e+04 | 2592 |      1 | 5.881e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446463.14860736905 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 92                                                      [SPH][rank=0]
Info: time since start : 13.715334338000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000633028 s
sph::RenderFieldGetter compute custom field took :  0.0005634840000000001 s
rho_t_ampl=0.00134216, rho_t_phi=3.14159 rad
eps_t_ampl=-4.17606e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.79011e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4242.64s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 3889.087392485395, dt = 49.45908158793109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.82 us   (4.8%)
   patch tree reduce : 2.13 us    (0.9%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.6%)
   LB compute        : 221.00 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.599157605300697e-22,4.054619369825736e-24,-3.0933317211980566e-23)
    sum a = (1.0731282095858163e-26,-1.628393802585077e-25,-5.289535590773017e-26)
    sum e = 7.861351701686406e-16
    sum de = -5.970382827600431e-33
Info: cfl dt = 49.45750493189662 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7310e+04 | 2592 |      1 | 4.523e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3936772.25325632 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3938.546474073326, dt = 49.45750493189662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (2.9%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 154.31 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5745097558812755e-22,-1.5517032741186758e-23,-3.1178188286049466e-23)
    sum a = (2.2684877280905778e-25,-5.362604853556896e-26,1.0916956873867285e-26)
    sum e = 7.861300381389838e-16
    sum de = 7.318533788671496e-33
Info: cfl dt = 49.4559507539907 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2881e+04 | 2592 |      1 | 4.902e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3632438.2177261757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3988.0039790052224, dt = 49.4559507539907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (2.9%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 158.73 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.399535699846528e-22,-1.5468290656153235e-23,-2.906028091744228e-23)
    sum a = (-7.022972231424933e-26,3.9468470061576615e-26,1.3246448348978955e-25)
    sum e = 7.861254750056743e-16
    sum de = 7.318533788671496e-33
Info: cfl dt = 49.454415837317256 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6912e+04 | 2592 |      1 | 4.554e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3909210.6629075212 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4037.459929759213, dt = 49.454415837317256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (2.5%)
   patch tree reduce : 1.83 us    (0.9%)
   gen split merge   : 1.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.7%)
   LB compute        : 179.34 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5141738744899833e-22,-1.1214290082527816e-23,-1.9503703021972584e-23)
    sum a = (-1.4305450934093166e-25,-2.5621954598102354e-26,-1.0465791745283333e-25)
    sum e = 7.861204378365345e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 49.452901129416254 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4670e+04 | 2592 |      1 | 5.803e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3068232.9275777303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4086.9143455965304, dt = 49.452901129416254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (3.1%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 154.78 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6012115927523154e-22,-1.4089070175945372e-23,-3.0542715576463696e-23)
    sum a = (-2.2450443898671496e-25,-2.3565471590593467e-26,-1.4126353840759175e-25)
    sum e = 7.861149802745481e-16
    sum de = 5.007417855406813e-33
Info: cfl dt = 49.45140737462028 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2998e+04 | 2592 |      1 | 6.028e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2953312.400681138 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4136.367246725947, dt = 49.45140737462028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (2.7%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.9%)
   LB compute        : 172.95 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7290723116155646e-22,-1.5205524683338764e-23,-3.843352343835885e-23)
    sum a = (-2.3967365783716863e-25,-2.12825717334104e-25,-1.6546116963234827e-25)
    sum e = 7.861091131661844e-16
    sum de = 2.6963019221421302e-33
Info: cfl dt = 49.44993530689493 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4282e+04 | 2592 |      1 | 5.853e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3041369.382756138 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4185.818654100567, dt = 49.44993530689493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.5%)
   patch tree reduce : 1.44 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 154.66 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.860527508519146e-22,-3.0406034748875724e-23,-4.721387103208411e-23)
    sum a = (3.8111095293701887e-26,-2.1704686001635016e-25,-9.84775523533057e-26)
    sum e = 7.861028483089323e-16
    sum de = 1.4251881588465545e-32
Info: cfl dt = 49.448485648867276 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4701e+04 | 2592 |      1 | 5.799e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3070053.7816253803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4235.268589407462, dt = 7.372202394787564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.4%)
   patch tree reduce : 1.48 us    (0.8%)
   gen split merge   : 951.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 169.78 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7891514445754045e-22,-3.211180714033699e-23,-4.628369970884395e-23)
    sum a = (2.2489307186635465e-25,1.2836001417183222e-25,2.9657887715815214e-27)
    sum e = 7.857593778421514e-16
    sum de = 2.3496345321524277e-32
Info: cfl dt = 49.44827751403298 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5969e+04 | 2592 |      1 | 5.639e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 470682.328782728 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 100                                                     [SPH][rank=0]
Info: time since start : 14.328674880000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007842140000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006625310000000001 s
rho_t_ampl=0.00128649, rho_t_phi=3.14159 rad
eps_t_ampl=-4.601e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-3.32612e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4596.19s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 4242.64079180225, dt = 49.44827751403298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.14 us   (4.9%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 219.07 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6620609710065123e-22,-2.4497410885367428e-23,-4.5763116141427735e-23)
    sum a = (-4.3363907441090403e-26,9.782912092442981e-26,-2.0564732234521276e-25)
    sum e = 7.86097914958768e-16
    sum de = -9.629649721936179e-33
Info: cfl dt = 49.44684805781796 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7254e+04 | 2592 |      1 | 4.527e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3932102.8627845487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4292.089069316283, dt = 49.44684805781796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (2.5%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 971.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 161.82 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.761165865547103e-22,-2.0413706732291236e-23,-6.108950754870933e-23)
    sum a = (1.520181386616543e-25,7.328374208565202e-26,7.874033935701557e-26)
    sum e = 7.860893081722023e-16
    sum de = -2.4266717299279172e-32
Info: cfl dt = 49.44544913716429 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5904e+04 | 2592 |      1 | 4.637e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3839283.2718900573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4341.535917374101, dt = 49.44544913716429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (2.3%)
   patch tree reduce : 1.51 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.7%)
   LB compute        : 168.19 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6266296874660938e-22,-1.738708401183509e-23,-5.0165119355140454e-23)
    sum a = (-1.9268668903427565e-26,1.2929761058231383e-25,-1.1749943168383094e-25)
    sum e = 7.860819165480585e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 49.44407463922805 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6706e+04 | 2592 |      1 | 4.571e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3894265.593707262 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4390.981366511265, dt = 49.44407463922805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (2.9%)
   patch tree reduce : 1.31 us    (0.7%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 159.41 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6858102009158506e-22,-9.612621156631976e-24,-6.082635183422082e-23)
    sum a = (2.886539372162783e-25,1.3353143672169538e-25,-9.93703766900994e-26)
    sum e = 7.860741438141546e-16
    sum de = 4.2755644765396636e-32
Info: cfl dt = 49.442718689657504 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6186e+04 | 2592 |      1 | 4.613e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3858421.9240039308 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4440.4254411504935, dt = 49.442718689657504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (2.6%)
   patch tree reduce : 1.56 us    (0.8%)
   gen split merge   : 912.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 183.17 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4642363045725095e-22,-2.9032631225317952e-24,-6.529130624087019e-23)
    sum a = (9.635588106164233e-26,1.8193939346164808e-25,-2.3635229877767156e-26)
    sum e = 7.860660459753382e-16
    sum de = 4.1600086798764294e-32
Info: cfl dt = 49.441339048566846 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6039e+04 | 2592 |      1 | 4.625e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3848203.384793903 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4489.868159840151, dt = 49.441339048566846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (2.6%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 156.66 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4625674397680694e-22,7.289248436700666e-24,-6.458758787537016e-23)
    sum a = (-3.397654291611541e-25,-1.552704415139115e-25,-5.195915998604608e-26)
    sum e = 7.86057638467712e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 49.439986074370886 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7362e+04 | 2592 |      1 | 4.519e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3938945.6191048343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4539.309498888718, dt = 49.439986074370886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.8%)
   patch tree reduce : 1.37 us    (0.9%)
   gen split merge   : 682.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 141.21 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7464028307385952e-22,-8.729446669378453e-24,-6.78566345373608e-23)
    sum a = (3.5180051188548105e-25,2.0091722432674645e-26,-1.081809125522716e-25)
    sum e = 7.860489387501474e-16
    sum de = 3.3125995043460457e-32
Info: cfl dt = 49.43866042659893 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9310e+04 | 2592 |      1 | 4.370e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4072612.4848941686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4588.749484963088, dt = 7.4447061560158545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (2.2%)
   patch tree reduce : 761.00 ns  (0.5%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 131.61 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5284234124355863e-22,-4.2411631520528035e-24,-7.00518109749747e-23)
    sum a = (5.284153508649785e-26,-2.9051874821132375e-26,9.429133225636924e-27)
    sum e = 7.857487821732598e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 49.4384721908313 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.2562e+04 | 2592 |      1 | 4.143e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 646880.9357483737 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 108                                                     [SPH][rank=0]
Info: time since start : 14.874774063 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007273490000000001 s
sph::RenderFieldGetter compute custom field took :  0.000639087 s
rho_t_ampl=0.00119831, rho_t_phi=3.14159 rad
eps_t_ampl=-4.98362e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.77787e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4949.75s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 4596.194191119104, dt = 49.4384721908313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.44 us   (5.1%)
   patch tree reduce : 1.93 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 215.00 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5350988716533462e-22,-5.859280024338557e-24,-6.914786291830562e-23)
    sum a = (-1.1376914137840284e-25,5.446663363877157e-26,-1.0832622441334187e-25)
    sum e = 7.860422139374891e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 49.437169421314806 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6456e+04 | 2592 |      1 | 4.591e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3876547.1145474585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4645.632663309935, dt = 49.437169421314806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (1.9%)
   patch tree reduce : 971.00 ns  (0.6%)
   gen split merge   : 631.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 152.33 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 2.70 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6267580616818201e-22,-1.1064252717897874e-24,-7.741402731437509e-23)
    sum a = (-3.829162153456679e-25,2.913110970007102e-26,-5.82411692778124e-26)
    sum e = 7.860309934190323e-16
    sum de = 1.0014835710813626e-32
Info: cfl dt = 49.435904890317445 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8716e+04 | 2592 |      1 | 4.414e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4031600.847139822 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4695.06983273125, dt = 49.435904890317445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.9%)
   patch tree reduce : 1.25 us    (0.9%)
   gen split merge   : 742.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 127.41 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8809390088196045e-22,-2.880396465355574e-25,-7.905520054138936e-23)
    sum a = (3.142660976389865e-25,2.6807196733424965e-25,7.17840139504395e-26)
    sum e = 7.860215242586268e-16
    sum de = 2.0029671421627253e-32
Info: cfl dt = 49.434669491373874 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7930e+04 | 2592 |      1 | 4.474e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3977538.704899386 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4744.505737621567, dt = 49.434669491373874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.4%)
   patch tree reduce : 1.47 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 163.73 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.544085066754177e-22,1.8871410881168743e-23,-7.229262524127805e-23)
    sum a = (1.2875031206128894e-26,-6.256940391322573e-26,-9.446816151352668e-26)
    sum e = 7.860118027333097e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 49.433464003826664 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4215e+04 | 2592 |      1 | 4.781e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3722341.7709490145 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4793.940407112941, dt = 49.433464003826664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.4%)
   patch tree reduce : 1.97 us    (1.1%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.8%)
   LB compute        : 169.06 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6290687975648907e-22,7.601358248684877e-24,-8.107182437610171e-23)
    sum a = (-1.5646861196075437e-25,-4.832583257927278e-26,-7.311050768164268e-26)
    sum e = 7.860018839621124e-16
    sum de = 3.851859888774472e-33
Info: cfl dt = 49.43228901035153 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4016e+04 | 2592 |      1 | 4.799e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3708586.8357138718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4843.373871116768, dt = 49.43228901035153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (2.7%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 164.34 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7505108056418321e-22,5.569836284818495e-24,-8.415795271555927e-23)
    sum a = (1.382655493402099e-25,-1.1060621037661724e-25,8.349830185311715e-26)
    sum e = 7.859917874348744e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 49.431145079338776 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9769e+04 | 2592 |      1 | 6.518e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2730379.325106204 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4892.806160127119, dt = 49.431145079338776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (3.2%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 150.22 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.575665123822811e-22,-1.4426052492226525e-24,-7.615977007554215e-23)
    sum a = (9.189287121803777e-26,-8.82180966101541e-26,3.6174213938876336e-26)
    sum e = 7.859815332337111e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.43003276336581 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9461e+04 | 2592 |      1 | 6.569e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2709166.137523422 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4942.237305206458, dt = 7.510285229500369 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (2.9%)
   patch tree reduce : 1.79 us    (1.0%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 153.12 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6051911934398263e-22,-1.5507204090295225e-24,-7.705773333862409e-23)
    sum a = (-8.643947435857714e-26,6.076801020385738e-26,1.7816772155546893e-26)
    sum e = 7.857356398613119e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 49.42987805442205 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2799e+04 | 2592 |      1 | 6.056e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 446431.2847578753 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 116                                                     [SPH][rank=0]
Info: time since start : 15.475542952000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000758947 s
sph::RenderFieldGetter compute custom field took :  0.000642172 s
rho_t_ampl=0.00107986, rho_t_phi=3.14159 rad
eps_t_ampl=-5.31427e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.10864e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5303.30s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 4949.747590435958, dt = 49.42987805442205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.82 us   (4.5%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 214.01 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.65345989855286e-22,2.0194868811420557e-24,-7.624598727559786e-23)
    sum a = (1.8880036023787841e-26,9.395772824550866e-26,8.484335107037648e-26)
    sum e = 7.859736985459143e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 49.42879098275582 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3922e+04 | 2592 |      1 | 4.807e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3701895.4712667884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4999.17746849038, dt = 49.42879098275582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (3.1%)
   patch tree reduce : 1.82 us    (1.1%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 140.52 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.61674487285518e-22,7.481007421441608e-24,-7.039572519817171e-23)
    sum a = (1.3673609091066003e-25,1.621518781167156e-26,-9.24540443185226e-27)
    sum e = 7.859609870335362e-16
    sum de = -5.007417855406813e-32
Info: cfl dt = 49.42774866367344 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6577e+04 | 2592 |      1 | 4.581e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3884104.8165103886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5048.606259473137, dt = 49.42774866367344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.5%)
   patch tree reduce : 1.89 us    (1.2%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 142.68 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5276531671412293e-22,6.361142973942989e-24,-7.31780514394977e-23)
    sum a = (1.7651454662346137e-25,8.663486815769036e-27,-2.2418025161018877e-25)
    sum e = 7.859503995005678e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 49.42673943258206 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6467e+04 | 2592 |      1 | 4.590e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3876429.3456989997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5098.03400813681, dt = 49.42673943258206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (2.4%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 137.33 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4234133039715924e-22,6.602446382565744e-24,-8.957042312446331e-23)
    sum a = (-8.198900105947709e-26,1.979868070488179e-26,-3.0728189218057004e-26)
    sum e = 7.859397111256562e-16
    sum de = 1.0168910106364605e-31
Info: cfl dt = 49.42576393822492 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5591e+04 | 2592 |      1 | 4.663e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3816250.0679298933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5147.460747569393, dt = 49.42576393822492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (2.3%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 144.47 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5417743308711063e-22,7.85850784956133e-24,-8.63083350107296e-23)
    sum a = (-4.177176628901799e-26,3.408167359479618e-26,2.0318735896422093e-26)
    sum e = 7.85928972736855e-16
    sum de = 3.4666738998970245e-32
Info: cfl dt = 49.42482264663816 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6560e+04 | 2592 |      1 | 4.583e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3882692.6511801793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5196.886511507618, dt = 49.42482264663816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.5%)
   patch tree reduce : 1.47 us    (0.9%)
   gen split merge   : 681.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 153.14 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5384366012622263e-22,9.896047354789876e-24,-8.404256845740288e-23)
    sum a = (-3.7371439167935965e-26,-6.948933162532885e-26,-2.2108694844156426e-27)
    sum e = 7.859182053838843e-16
    sum de = 3.3125995043460457e-32
Info: cfl dt = 49.42391600822109 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7044e+04 | 2592 |      1 | 4.544e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3915795.751904198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5246.311334154256, dt = 49.42391600822109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (2.1%)
   patch tree reduce : 1.29 us    (0.9%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.8%)
   LB compute        : 130.10 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.53 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5430580730283677e-22,3.905986098180299e-24,-8.470859916023224e-23)
    sum a = (1.8923913929553618e-25,-1.3486231824512893e-25,7.644042461176698e-26)
    sum e = 7.859074304351171e-16
    sum de = -3.928897086549961e-32
Info: cfl dt = 49.423044456013194 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1366e+04 | 2592 |      1 | 5.046e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3525961.3217279688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5295.735250162476, dt = 7.565739590335397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.1%)
   patch tree reduce : 1.46 us    (0.8%)
   gen split merge   : 1.16 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 170.50 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4858031728145033e-22,1.2584684835404508e-24,-8.218664333677428e-23)
    sum a = (-1.7094832086346017e-25,-1.9344039980173218e-25,-1.927026121563956e-26)
    sum e = 7.857213068836526e-16
    sum de = 6.162975822039155e-32
Info: cfl dt = 49.42292786496498 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2614e+04 | 2592 |      1 | 6.083e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 447784.67922501644 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 124                                                     [SPH][rank=0]
Info: time since start : 16.253108987 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000736944 s
sph::RenderFieldGetter compute custom field took :  0.00068116 s
rho_t_ampl=0.00093413, rho_t_phi=3.14159 rad
eps_t_ampl=-5.58459e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.28479e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5656.85s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 5303.300989752812, dt = 49.42292786496498 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.00 us   (5.1%)
   patch tree reduce : 2.39 us    (1.1%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.6%)
   LB compute        : 191.26 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5695031614679555e-22,-8.517829798142372e-24,-8.3501097129258e-23)
    sum a = (-3.3729572989376623e-25,-1.7114542864326738e-25,-9.395804966261833e-26)
    sum e = 7.8589928091068e-16
    sum de = -1.617781153285278e-32
Info: cfl dt = 49.42208328097734 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6834e+04 | 2592 |      1 | 4.561e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3901260.1538071325 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5352.723917617776, dt = 49.42208328097734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.8%)
   patch tree reduce : 1.35 us    (0.9%)
   gen split merge   : 831.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (1.2%)
   LB compute        : 134.38 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (56.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8090494480129582e-22,-1.6424277393888936e-23,-8.999034427501032e-23)
    sum a = (-1.7828219939859688e-25,2.3961156276516976e-26,-1.4561456108111079e-27)
    sum e = 7.858863476901787e-16
    sum de = -3.158525108795067e-32
Info: cfl dt = 49.42128880438318 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9204e+04 | 2592 |      1 | 4.378e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4063857.092974478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5402.146000898753, dt = 49.42128880438318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (1.9%)
   patch tree reduce : 411.00 ns  (0.3%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.7%)
   LB compute        : 129.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 1.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8511561907711368e-22,-1.0420977546282601e-23,-8.777649046492891e-23)
    sum a = (-4.447213797528884e-25,-6.779131543724571e-26,8.568607463920556e-26)
    sum e = 7.858757107246863e-16
    sum de = 1.771855548836257e-32
Info: cfl dt = 49.420530521347104 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9335e+04 | 2592 |      1 | 4.368e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4072798.1481736638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5451.567289703136, dt = 49.420530521347104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (2.0%)
   patch tree reduce : 350.00 ns  (0.3%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.3%)
   LB compute        : 124.95 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 1.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1186880563444413e-22,-1.6027922002834438e-23,-8.138849878096138e-23)
    sum a = (-2.431337441204126e-25,9.796883483642731e-26,-1.921448911037435e-25)
    sum e = 7.858651320998893e-16
    sum de = -3.8518598887744717e-32
Info: cfl dt = 49.41980893544204 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9287e+04 | 2592 |      1 | 4.372e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4069446.9652956505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5500.987820224484, dt = 49.41980893544204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (2.7%)
   patch tree reduce : 831.00 ns  (0.6%)
   gen split merge   : 631.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.8%)
   LB compute        : 131.53 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.47 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.209577001078558e-22,-7.108922780547835e-24,-9.774953944835756e-23)
    sum a = (3.3322135292980135e-26,4.5281900808526064e-26,-1.8661511840165872e-25)
    sum e = 7.858546554785271e-16
    sum de = -2.9274135154685985e-32
Info: cfl dt = 49.41912438602375 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7861e+04 | 2592 |      1 | 4.480e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3971515.223510575 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5550.407629159926, dt = 49.41912438602375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.9%)
   patch tree reduce : 1.72 us    (1.2%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 130.55 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1145800814412041e-22,-6.1585524147501525e-24,-1.0683525504176634e-22)
    sum a = (3.920177466559401e-26,-5.624437441456305e-26,1.6438577942284827e-25)
    sum e = 7.858443013696521e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 49.418477195902355 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7241e+04 | 2592 |      1 | 4.528e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3928906.8802997684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5599.82675354595, dt = 49.418477195902355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.2%)
   patch tree reduce : 1.25 us    (0.7%)
   gen split merge   : 951.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 161.28 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0809460369209518e-22,-1.1451381212197057e-23,-9.003848163543793e-23)
    sum a = (-1.5959021154237666e-25,-8.79624441469284e-26,-4.620526834837692e-26)
    sum e = 7.858340902976898e-16
    sum de = -3.8518598887744717e-32
Info: cfl dt = 49.41786766946892 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6100e+04 | 2592 |      1 | 4.620e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3850521.9777912986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5649.2452307418525, dt = 7.60915832781302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (2.1%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 152.75 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.152065352433241e-22,-1.2906623298280253e-23,-9.559360928384655e-23)
    sum a = (3.005009717730376e-26,1.697696897965286e-25,-2.517650455063276e-25)
    sum e = 7.857072679695814e-16
    sum de = 5.777789833161708e-32
Info: cfl dt = 49.41779274233944 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7674e+04 | 2592 |      1 | 4.494e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609510.2251916544 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 132                                                     [SPH][rank=0]
Info: time since start : 16.794656687 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000972526 s
sph::RenderFieldGetter compute custom field took :  0.000738606 s
rho_t_ampl=0.000764811, rho_t_phi=3.14159 rad
eps_t_ampl=-5.78775e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.27659e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6010.41s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 5656.854389069666, dt = 49.41779274233944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.70 us   (5.3%)
   patch tree reduce : 2.07 us    (0.9%)
   gen split merge   : 922.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.6%)
   LB compute        : 194.87 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1189448047758934e-22,-3.5391166598004004e-24,-1.0881735056756591e-22)
    sum a = (-9.547832294632684e-26,2.027345335711303e-26,2.3721638072557526e-25)
    sum e = 7.858264549753542e-16
    sum de = -7.241496590896007e-32
Info: cfl dt = 49.417211225330284 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6013e+04 | 2592 |      1 | 4.628e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3844476.175961446 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5706.272181812005, dt = 49.417211225330284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.8%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.9%)
   LB compute        : 139.92 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.201104302840632e-22,-6.2275535557029604e-24,-8.501258718693926e-23)
    sum a = (-3.7777623209881996e-25,2.0413044841918098e-26,3.315911134073423e-26)
    sum e = 7.858145898879342e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 49.41668389359733 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7329e+04 | 2592 |      1 | 4.521e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3934764.761192248 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5755.689393037335, dt = 49.41668389359733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.9%)
   patch tree reduce : 1.49 us    (1.0%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (1.0%)
   LB compute        : 136.91 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4896895397930252e-22,-5.211591989057697e-24,-8.841594445525647e-23)
    sum a = (5.51984054533452e-26,-6.827326232295317e-26,1.434822581352451e-25)
    sum e = 7.85804976211805e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 49.41619494474598 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7444e+04 | 2592 |      1 | 4.512e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3942600.9366311305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5805.106076930932, dt = 49.41619494474598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (2.7%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.9%)
   LB compute        : 139.39 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.332302751312761e-22,-1.0777215994922678e-23,-7.859969518048813e-23)
    sum a = (-6.608012608325745e-26,2.0491946718893342e-25,1.1809873191268545e-25)
    sum e = 7.857955718500231e-16
    sum de = 6.240013019814644e-32
Info: cfl dt = 49.41574472668256 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6676e+04 | 2592 |      1 | 4.573e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3889884.598575067 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5854.522271875679, dt = 49.41574472668256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (3.0%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 141.81 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 932.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.368504280147536e-22,6.106199804899331e-24,-7.339093703183866e-23)
    sum a = (2.2313795563572366e-25,1.398918476789694e-25,8.288857612736732e-26)
    sum e = 7.857864111468127e-16
    sum de = 2.311115933264683e-32
Info: cfl dt = 49.41533344550788 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5751e+04 | 2592 |      1 | 4.649e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3826335.439987685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5903.938016602361, dt = 49.41533344550788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (3.1%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 138.74 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1731187238123304e-22,1.1402237957739388e-23,-7.016493843872065e-23)
    sum a = (2.889360094676297e-25,1.0853288138743044e-25,-1.3027614085765427e-26)
    sum e = 7.857775120289107e-16
    sum de = 0
Info: cfl dt = 49.41496129029684 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5788e+04 | 2592 |      1 | 4.646e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3828865.300841103 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5953.353350047869, dt = 49.41496129029684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.9%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 135.43 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.065284382602361e-22,1.5990613246389024e-23,-7.317856274557676e-23)
    sum a = (1.25365445045072e-25,-5.66496818778113e-26,2.8033648103838323e-26)
    sum e = 7.857688921366745e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 49.414628431118004 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6189e+04 | 2592 |      1 | 4.613e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3856381.084928888 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6002.768311338165, dt = 7.63947704835482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (3.3%)
   patch tree reduce : 1.20 us    (0.8%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (1.0%)
   LB compute        : 132.03 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.073500332408835e-22,1.1478460148326791e-23,-7.194987999348515e-23)
    sum a = (-2.2758216066257146e-25,-5.943301512675828e-26,6.864646339179279e-26)
    sum e = 7.856949826576237e-16
    sum de = -2.311115933264683e-32
Info: cfl dt = 49.41459751097408 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6744e+04 | 2592 |      1 | 4.568e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 602070.6829120419 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 140                                                     [SPH][rank=0]
Info: time since start : 17.346488215 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009000280000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007790070000000001 s
rho_t_ampl=0.000576187, rho_t_phi=3.14159 rad
eps_t_ampl=-5.91863e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.05897e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6363.96s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 6010.40778838652, dt = 49.41459751097408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.22 us   (4.4%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 227.32 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2583592030544964e-22,8.533274820971925e-24,-6.840261229929555e-23)
    sum a = (-5.1036272677848813e-26,-4.996856064725596e-26,-1.9979867034344669e-25)
    sum e = 7.857625497364127e-16
    sum de = 3.0814879110195774e-33
Info: cfl dt = 49.414292998431236 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6005e+04 | 2592 |      1 | 4.628e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3843684.463451397 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6059.822385897494, dt = 49.414292998431236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (2.1%)
   patch tree reduce : 1.15 us    (0.7%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 150.97 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.192118107739801e-22,6.292543002414326e-24,-8.490807645500676e-23)
    sum a = (2.531065652737481e-25,6.473504300550237e-26,5.343155175069844e-26)
    sum e = 7.857529345846308e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 49.41404538979366 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5726e+04 | 2592 |      1 | 4.651e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3824556.331645434 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6109.236678895925, dt = 49.41404538979366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.7%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 138.01 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.016758929057875e-22,1.232893932751256e-23,-7.601121113623238e-23)
    sum a = (-1.0600902033011288e-25,-5.0870408317548946e-26,-2.0768765590201108e-26)
    sum e = 7.857453137417484e-16
    sum de = -2.619264724366641e-32
Info: cfl dt = 49.41383739582436 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7807e+04 | 2592 |      1 | 4.484e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3967328.6071800715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6158.650724285719, dt = 49.41383739582436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.5%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 133.68 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1607947991026196e-22,6.963699449007623e-24,-7.88707444665404e-23)
    sum a = (-3.437708551303442e-25,2.4169211495870975e-25,1.4337876875016812e-25)
    sum e = 7.857380299587624e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 49.41366920225029 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8490e+04 | 2592 |      1 | 4.431e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4014212.7656604825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6208.064561681543, dt = 49.41366920225029 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (2.3%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 145.12 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 812.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3502751415144222e-22,2.6130772195770664e-23,-6.773029363148918e-23)
    sum a = (-8.023388482884608e-26,-6.568381701865256e-26,-6.245379345349317e-26)
    sum e = 7.85731107038293e-16
    sum de = -5.39260384428426e-32
Info: cfl dt = 49.4135408786637 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8428e+04 | 2592 |      1 | 4.436e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4009949.8125826702 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6257.478230883793, dt = 49.4135408786637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.7%)
   patch tree reduce : 1.03 us    (0.7%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (1.0%)
   LB compute        : 134.30 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.350788638377327e-22,1.5296790727331577e-23,-7.59018277772211e-23)
    sum a = (8.969897592974902e-27,8.924865198784541e-26,5.216185497136848e-26)
    sum e = 7.85724558543064e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 49.41345247754724 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7891e+04 | 2592 |      1 | 4.477e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3973036.5662463973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6306.891771762456, dt = 49.41345247754724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (3.1%)
   patch tree reduce : 1.21 us    (0.8%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.6%)
   LB compute        : 129.84 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3292217701353333e-22,2.3528987895483256e-23,-7.049254792105146e-23)
    sum a = (-1.0154601048650832e-25,7.249269102450531e-27,-4.539836833790715e-26)
    sum e = 7.857183974770967e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 49.41340403223062 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8745e+04 | 2592 |      1 | 4.412e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4031683.6363276844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6356.305224240004, dt = 7.655963463370426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (2.2%)
   patch tree reduce : 841.00 ns  (0.6%)
   gen split merge   : 701.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.5%)
   LB compute        : 138.27 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.47 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (55.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3471941603369946e-22,2.1554632574557427e-23,-7.325050989944207e-23)
    sum a = (-2.4448142265464718e-25,-8.161381068556583e-26,1.5253544438693382e-26)
    sum e = 7.856857336446186e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 49.4134181622098 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0080e+04 | 2592 |      1 | 4.314e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638851.300589611 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 148                                                     [SPH][rank=0]
Info: time since start : 17.890344733000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007681900000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006328480000000001 s
rho_t_ampl=0.000373032, rho_t_phi=3.14159 rad
eps_t_ampl=-5.97393e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.61216e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6717.51s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 6363.961187703374, dt = 49.4134181622098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.12 us   (5.1%)
   patch tree reduce : 2.01 us    (0.9%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 209.05 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4786493572405763e-22,1.7175868310023154e-23,-7.226460571553533e-23)
    sum a = (6.832730168569037e-26,-8.49698583406855e-27,1.1699754806156052e-25)
    sum e = 7.857139970538891e-16
    sum de = 5.238529448733282e-32
Info: cfl dt = 49.413397694184894 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6614e+04 | 2592 |      1 | 4.578e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3885385.4621062377 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6413.374605865583, dt = 49.413397694184894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.3%)
   patch tree reduce : 1.39 us    (0.8%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 155.12 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3857064250548407e-22,1.8568929135363993e-23,-6.396959984567018e-23)
    sum a = (4.331470150391021e-25,-7.14691629676593e-26,7.683588217838403e-26)
    sum e = 7.857075879705524e-16
    sum de = -2.7733391199176196e-32
Info: cfl dt = 49.41343544102475 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3428e+04 | 2592 |      1 | 5.969e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2980434.851578023 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6462.788003559768, dt = 49.41343544102475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.7%)
   patch tree reduce : 1.95 us    (1.2%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 151.26 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0545009484813642e-22,1.3482100837215152e-23,-6.116513712628241e-23)
    sum a = (-1.719669151044514e-25,7.153104991343107e-26,1.3864968825605648e-26)
    sum e = 7.857027297852343e-16
    sum de = -2.7733391199176196e-32
Info: cfl dt = 49.413513058834944 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4338e+04 | 2592 |      1 | 5.846e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3042928.393565373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6512.201439000793, dt = 49.413513058834944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (2.9%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.9%)
   LB compute        : 141.95 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2994389520868654e-22,2.055451720016586e-23,-6.203582488895787e-23)
    sum a = (2.286759741705897e-25,1.9747257611246749e-25,-1.0835521151284237e-25)
    sum e = 7.856983004802968e-16
    sum de = 5.854827030937197e-32
Info: cfl dt = 49.413630568438265 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2316e+04 | 2592 |      1 | 6.125e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2904111.607998303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6561.614952059627, dt = 49.413630568438265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (2.8%)
   patch tree reduce : 1.92 us    (1.2%)
   gen split merge   : 1.06 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 139.51 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1012291630056842e-22,3.341721244650232e-23,-7.040971351941647e-23)
    sum a = (-1.5828014264165564e-25,9.867520300857238e-26,6.316617494018863e-26)
    sum e = 7.856943131427873e-16
    sum de = -5.854827030937197e-32
Info: cfl dt = 49.413787902749206 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2418e+04 | 2592 |      1 | 6.111e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2911123.805156998 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6611.028582628065, dt = 49.413787902749206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (3.3%)
   patch tree reduce : 1.95 us    (1.3%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 134.75 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.265548159135161e-22,3.5846293309695636e-23,-6.305068633590884e-23)
    sum a = (-1.7399783531418155e-25,-8.51976035253975e-26,2.390068406981675e-26)
    sum e = 7.856907756224025e-16
    sum de = 3.0814879110195774e-32
Info: cfl dt = 49.41398497785099 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7534e+04 | 2592 |      1 | 4.505e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3948569.4602576448 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6660.4423705308145, dt = 49.41398497785099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (2.6%)
   patch tree reduce : 1.43 us    (0.9%)
   gen split merge   : 931.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 150.99 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3394917073934254e-22,2.710360804932042e-23,-6.283978661120297e-23)
    sum a = (1.2795737562137887e-25,1.5455450565667825e-26,-9.010894002585392e-27)
    sum e = 7.856876949956157e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 49.414221690933765 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2358e+04 | 2592 |      1 | 6.119e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2907074.8432188374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6709.856355508666, dt = 7.658231511562008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (3.4%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 882.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 138.84 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.25322423442545e-22,2.9710005797985485e-23,-6.372194023584301e-23)
    sum a = (-5.990431084672459e-26,4.651101778893464e-26,2.262230425567468e-25)
    sum e = 7.856804937853572e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.414280569082585 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3069e+04 | 2592 |      1 | 6.018e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 458097.8146985359 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 156                                                     [SPH][rank=0]
Info: time since start : 18.520009587 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000714891 s
sph::RenderFieldGetter compute custom field took :  0.000576764 s
rho_t_ampl=0.000160484, rho_t_phi=3.14159 rad
eps_t_ampl=-5.95224e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.92219e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7071.07s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 6717.514587020228, dt = 49.414280569082585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.09 us   (5.5%)
   patch tree reduce : 2.17 us    (1.0%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 191.60 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (73.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.27992607129649e-22,3.212083345238024e-23,-5.164255336696626e-23)
    sum a = (-2.8279310266042113e-26,6.93513676570131e-26,-6.79807188086419e-26)
    sum e = 7.856856896909396e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 49.414544198486894 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6332e+04 | 2592 |      1 | 4.601e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3866112.2214816245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6766.92886758931, dt = 49.414544198486894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (3.1%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 142.94 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.317411342288527e-22,3.612109436523443e-23,-6.22707232054808e-23)
    sum a = (-8.59834575522257e-26,4.888744589977218e-26,-1.5459146758463914e-26)
    sum e = 7.856831220379112e-16
    sum de = 7.241496590896007e-32
Info: cfl dt = 49.4148659295429 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6223e+04 | 2592 |      1 | 4.610e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3858633.0289868196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6816.343411787797, dt = 49.4148659295429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (2.9%)
   patch tree reduce : 1.64 us    (1.0%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (1.0%)
   LB compute        : 147.69 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.338464713667616e-22,3.8024442698086736e-23,-6.173697009819768e-23)
    sum a = (-2.951055564319103e-25,3.5685576939381e-26,7.998900758349621e-26)
    sum e = 7.856815199895361e-16
    sum de = 7.703719777548943e-32
Info: cfl dt = 49.4152268161107 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7326e+04 | 2592 |      1 | 4.522e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3934376.6589310863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6865.75827771734, dt = 49.4152268161107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.3%)
   patch tree reduce : 1.83 us    (1.0%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 158.45 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.572105786289216e-22,3.945782105055407e-23,-5.542601627065705e-23)
    sum a = (-2.2243630091048703e-25,-1.078372255946227e-25,9.753525067638746e-26)
    sum e = 7.856803935871905e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 49.41562671494854 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3917e+04 | 2592 |      1 | 5.902e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3014106.6936076786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6915.173504533451, dt = 49.41562671494854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (2.3%)
   patch tree reduce : 1.18 us    (0.7%)
   gen split merge   : 561.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.6%)
   LB compute        : 148.33 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.66 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.652211296902336e-22,3.05831510496354e-23,-5.0172724940575715e-23)
    sum a = (2.1283791108246975e-25,2.870516713353922e-26,-1.7704680103519388e-26)
    sum e = 7.856797460915606e-16
    sum de = 8.16594296420188e-32
Info: cfl dt = 49.41604502824304 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3727e+04 | 2592 |      1 | 5.928e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3001073.630517764 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6964.589131248399, dt = 49.41604502824304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (2.1%)
   patch tree reduce : 901.00 ns  (0.6%)
   gen split merge   : 561.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 148.99 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.53 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4529745140953453e-22,3.5375119821038236e-23,-5.389494691083665e-23)
    sum a = (1.5326474130582125e-25,-3.112347146554635e-26,-5.34763710194973e-26)
    sum e = 7.856795788560295e-16
    sum de = 2.7733391199176196e-32
Info: cfl dt = 49.41559693245734 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3673e+04 | 2592 |      1 | 5.935e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2997459.408078986 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7014.0051762766425, dt = 49.41559693245734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.4%)
   patch tree reduce : 1.63 us    (0.9%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 155.78 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.338464713667616e-22,3.235431405723218e-23,-5.742136145105432e-23)
    sum a = (-1.449961066710672e-25,-2.3413196648652978e-26,-3.9989270347105424e-26)
    sum e = 7.856798923168546e-16
    sum de = 4.776306262080345e-32
Info: cfl dt = 49.41517711215958 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3221e+04 | 2592 |      1 | 5.997e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2966395.084569376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7063.4207732091, dt = 7.647213127982468 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.6%)
   patch tree reduce : 1.41 us    (0.8%)
   gen split merge   : 912.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.7%)
   LB compute        : 168.88 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.444245067425967e-22,3.236213686100299e-23,-5.739393135891549e-23)
    sum a = (2.4408260383259754e-25,1.8269612818075754e-25,4.9947573271796846e-26)
    sum e = 7.856798251159263e-16
    sum de = -1.0014835710813626e-31
Info: cfl dt = 49.41513477359981 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3982e+04 | 2592 |      1 | 5.893e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 467137.46408801194 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 164                                                     [SPH][rank=0]
Info: time since start : 19.142208828 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00079485 s
sph::RenderFieldGetter compute custom field took :  0.000739878 s
rho_t_ampl=-5.608e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-5.85411e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.98125e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7424.62s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 7071.067986337082, dt = 49.41513477359981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.74 us   (5.1%)
   patch tree reduce : 2.25 us    (1.1%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.7%)
   LB compute        : 184.71 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3353837324901885e-22,4.217774974625195e-23,-5.45818821884789e-23)
    sum a = (-1.0056502587903063e-25,1.2473494500407383e-26,-7.736540977583564e-27)
    sum e = 7.856804930589454e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 49.41474153725116 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6842e+04 | 2592 |      1 | 4.560e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3901182.1888156882 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7120.483121110682, dt = 49.41474153725116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (2.8%)
   patch tree reduce : 1.89 us    (1.1%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 147.83 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4483530423292037e-22,3.859470503450776e-23,-5.638941550124167e-23)
    sum a = (8.672468074605468e-26,8.445169749145819e-26,2.835856828967449e-26)
    sum e = 7.856820179139696e-16
    sum de = -9.090389337507753e-32
Info: cfl dt = 49.41440714438463 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7746e+04 | 2592 |      1 | 4.489e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3963171.800145526 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7169.897862647933, dt = 49.41440714438463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.5%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 141.46 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3651665505386564e-22,4.454805928880814e-23,-5.409627841413674e-23)
    sum a = (-1.3706987640809252e-25,1.6459176636274759e-25,-3.5710748962752495e-26)
    sum e = 7.856838394633214e-16
    sum de = 1.3866695599588098e-32
Info: cfl dt = 49.414112661958406 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8351e+04 | 2592 |      1 | 4.442e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4004672.0545840072 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7219.312269792317, dt = 49.414112661958406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (2.3%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 139.85 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4868653070470498e-22,5.466755801284635e-23,-5.744386705072499e-23)
    sum a = (1.472448493415632e-25,1.416567948131523e-25,-2.7593871880120073e-26)
    sum e = 7.856861333848189e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 49.413858244012296 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8074e+04 | 2592 |      1 | 4.463e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3985662.7379022054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7268.726382454276, dt = 49.413858244012296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (2.1%)
   patch tree reduce : 1.32 us    (0.9%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.7%)
   LB compute        : 137.85 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.354896613280564e-22,6.109409160292485e-23,-5.860684258488399e-23)
    sum a = (9.217180933326305e-26,-2.5983788165319847e-26,1.6032034937382602e-25)
    sum e = 7.856888949041296e-16
    sum de = -7.087422195345028e-32
Info: cfl dt = 49.41364401426789 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7850e+04 | 2592 |      1 | 4.481e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3970291.817822397 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7318.140240698288, dt = 49.41364401426789 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.6%)
   patch tree reduce : 1.86 us    (1.2%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (1.0%)
   LB compute        : 138.02 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.272223618352921e-22,5.5670682157919e-23,-4.604204656715398e-23)
    sum a = (-2.126730751105863e-25,1.6577347035220906e-25,1.2425499555262093e-25)
    sum e = 7.856921186671769e-16
    sum de = -9.090389337507753e-32
Info: cfl dt = 49.41347007860669 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7463e+04 | 2592 |      1 | 4.511e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3943666.945874181 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7367.553884712555, dt = 49.41347007860669 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.8%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 143.66 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4730008917486254e-22,6.859435515672538e-23,-4.079323633976927e-23)
    sum a = (-6.411815686830207e-26,1.3606526335247646e-25,1.0894535610894282e-26)
    sum e = 7.85695798368177e-16
    sum de = -3.697785493223493e-32
Info: cfl dt = 49.41333652275974 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6644e+04 | 2592 |      1 | 4.576e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3887466.9264317607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7416.9673547911625, dt = 7.654030862774562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (3.1%)
   patch tree reduce : 1.17 us    (0.8%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 138.31 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.442704576837253e-22,6.891228192535968e-23,-4.35106160756981e-23)
    sum a = (-1.138945068234479e-26,-1.252848144961397e-25,-7.915201730272454e-26)
    sum e = 7.856838237582307e-16
    sum de = -4.468157470978387e-32
Info: cfl dt = 49.41333821694015 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8768e+04 | 2592 |      1 | 4.411e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 624737.6725425115 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 172                                                     [SPH][rank=0]
Info: time since start : 19.681564872000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000815381 s
sph::RenderFieldGetter compute custom field took :  0.000689342 s
rho_t_ampl=-0.000271183, rho_t_phi=3.14159 rad
eps_t_ampl=-5.68206e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.78787e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7778.17s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 7424.621385653937, dt = 49.41333821694015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.25 us   (5.3%)
   patch tree reduce : 2.08 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 202.30 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (76.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.50689168470033e-22,6.171349719380353e-23,-4.776639102477126e-23)
    sum a = (-8.211436650452216e-28,5.573674230388445e-26,4.1599668724671766e-26)
    sum e = 7.856989536464451e-16
    sum de = 6.625199008692091e-32
Info: cfl dt = 49.41323269853891 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2953e+04 | 2592 |      1 | 6.035e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2947843.999546617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7474.034723870877, dt = 49.41323269853891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (2.9%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 154.84 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4370561113453022e-22,6.89473842499723e-23,-4.2727444962923946e-23)
    sum a = (1.225948687095759e-25,6.460742490011665e-26,-6.761243990771962e-26)
    sum e = 7.857044099392871e-16
    sum de = -4.776306262080345e-32
Info: cfl dt = 49.41318632904844 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2014e+04 | 2592 |      1 | 6.169e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2883413.2278235494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7523.447956569416, dt = 49.41318632904844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (2.9%)
   patch tree reduce : 1.89 us    (1.1%)
   gen split merge   : 752.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 158.22 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.397516852901647e-22,7.235571967750169e-23,-4.8766652722921486e-23)
    sum a = (5.672786388289508e-27,-3.5374504746823485e-26,1.584469184375518e-25)
    sum e = 7.857094777094213e-16
    sum de = 7.395570986446986e-32
Info: cfl dt = 49.41318050361667 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2165e+04 | 2592 |      1 | 6.147e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2893763.089499748 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7572.861142898465, dt = 49.41318050361667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.14 us    (4.5%)
   patch tree reduce : 1.43 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 160.59 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3631125630870377e-22,6.813662084377681e-23,-3.5352129944263623e-23)
    sum a = (-9.510849488344387e-26,-9.442064994551298e-26,9.517908059524979e-26)
    sum e = 7.857149649722614e-16
    sum de = -3.697785493223493e-32
Info: cfl dt = 49.41321519968185 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2827e+04 | 2592 |      1 | 6.052e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2939170.424529592 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7622.274323402082, dt = 49.41321519968185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.2%)
   patch tree reduce : 1.72 us    (0.9%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.6%)
   LB compute        : 183.89 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.443218073700158e-22,6.201437426191171e-23,-3.2212158097998116e-23)
    sum a = (-2.5399039166131588e-26,-1.2820989394847844e-25,1.9047917404901318e-26)
    sum e = 7.857208616693255e-16
    sum de = 3.389636702121535e-32
Info: cfl dt = 49.413290396369604 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2015e+04 | 2592 |      1 | 6.169e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2883496.4773475183 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7671.687538601764, dt = 49.413290396369604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 15.34 us   (7.2%)
   patch tree reduce : 1.71 us    (0.8%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.7%)
   LB compute        : 183.75 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4963649990107856e-22,5.483865677224386e-23,-3.315188059888351e-23)
    sum a = (-4.97136672326233e-26,-2.57344039743464e-25,-1.619101179661783e-26)
    sum e = 7.857271563525566e-16
    sum de = -3.0814879110195774e-32
Info: cfl dt = 49.41340605468928 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1688e+04 | 2592 |      1 | 6.218e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861017.449039217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7721.100828998134, dt = 49.41340605468928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.6%)
   patch tree reduce : 1.80 us    (1.0%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 160.18 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4840410743010747e-22,3.892546922471468e-23,-3.4822569360164183e-23)
    sum a = (1.861676858919319e-27,-7.254188227042241e-26,-1.996899055087211e-25)
    sum e = 7.857338366769107e-16
    sum de = 3.0814879110195774e-32
Info: cfl dt = 49.413562115377694 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0440e+04 | 2592 |      1 | 6.410e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2775364.8507267926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7770.514235052823, dt = 7.660549917966819 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.0%)
   patch tree reduce : 1.42 us    (0.7%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 192.86 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5012432192083793e-22,4.294959971830545e-23,-4.0885956522210604e-23)
    sum a = (-1.3560780190525439e-25,1.5715258819940457e-25,1.7381747384988463e-27)
    sum e = 7.856921181628191e-16
    sum de = 7.395570986446986e-32
Info: cfl dt = 49.41360786514116 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2962e+04 | 2592 |      1 | 6.033e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 457099.619475318 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 180                                                     [SPH][rank=0]
Info: time since start : 20.361514719000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006660570000000001 s
sph::RenderFieldGetter compute custom field took :  0.000546218 s
rho_t_ampl=-0.000479384, rho_t_phi=3.14159 rad
eps_t_ampl=-5.44044e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.34696e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8131.73s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 7778.17478497079, dt = 49.41360786514116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.03 us   (5.3%)
   patch tree reduce : 1.95 us    (0.9%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.6%)
   LB compute        : 201.43 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5597818615795054e-22,5.158276572588929e-23,-4.0028542105488945e-23)
    sum a = (8.872739373064971e-26,3.873062585825861e-26,6.413464929496247e-26)
    sum e = 7.857392400677536e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 49.41379270491131 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1831e+04 | 2592 |      1 | 6.196e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870894.7204933222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7827.588392835931, dt = 49.41379270491131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (2.8%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 157.73 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (5.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4414208346799918e-22,5.057603105599934e-23,-3.531778837706059e-23)
    sum a = (-5.690337550595818e-26,1.9600385381308056e-25,-2.4197911978538972e-26)
    sum e = 7.857480729286492e-16
    sum de = -7.241496590896007e-32
Info: cfl dt = 49.41403548144289 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1871e+04 | 2592 |      1 | 6.190e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2873599.3092376664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7877.002185540842, dt = 49.41403548144289 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.9%)
   patch tree reduce : 1.77 us    (0.9%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 170.87 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.495851502147881e-22,6.41493979372073e-23,-3.8695928294083706e-23)
    sum a = (3.320303812018732e-26,6.448171665893279e-26,-2.115583943208625e-25)
    sum e = 7.857558848528461e-16
    sum de = 4.3140830754274083e-32
Info: cfl dt = 49.41431839869934 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2501e+04 | 2592 |      1 | 6.099e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2916886.712584872 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7926.416221022285, dt = 49.41431839869934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (3.2%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 153.86 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.50021622548257e-22,6.40868155070408e-23,-5.377906091211221e-23)
    sum a = (8.126814975046792e-26,1.785602560380367e-25,-1.4272158598816178e-25)
    sum e = 7.857640193056926e-16
    sum de = 2.9274135154685985e-32
Info: cfl dt = 49.41464125774862 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3011e+04 | 2592 |      1 | 6.026e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2951888.7997248494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7975.830539420984, dt = 49.41464125774862 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.2%)
   patch tree reduce : 1.35 us    (0.8%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 153.08 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.409070532317001e-22,7.573035687340295e-23,-5.913083490121647e-23)
    sum a = (-1.0045533111461619e-25,5.675607110803022e-26,1.8104576706341223e-26)
    sum e = 7.857724641385903e-16
    sum de = 9.55261252416069e-32
Info: cfl dt = 49.41500389342552 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6766e+04 | 2592 |      1 | 4.566e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3895935.3354201643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8025.245180678732, dt = 49.41500389342552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.2%)
   patch tree reduce : 1.34 us    (0.7%)
   gen split merge   : 711.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 166.53 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5338502700028223e-22,7.55185394174548e-23,-5.42626136055826e-23)
    sum a = (-1.107603706973211e-26,6.107520451509477e-26,-3.0473016013500282e-27)
    sum e = 7.857812029476202e-16
    sum de = -3.004450713244088e-32
Info: cfl dt = 49.415406122664585 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1388e+04 | 2592 |      1 | 6.263e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2840535.800503366 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8074.660184572158, dt = 49.415406122664585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (3.2%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 142.98 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5053511941116162e-22,7.864344864682627e-23,-5.493580732625753e-23)
    sum a = (1.980711348989615e-25,-7.838464657267733e-26,5.0646445297660177e-26)
    sum e = 7.857902185775484e-16
    sum de = 0
Info: cfl dt = 49.41584774255965 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1810e+04 | 2592 |      1 | 5.003e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3555828.370069685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8124.0755906948225, dt = 7.652593592822086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.6%)
   patch tree reduce : 1.21 us    (0.7%)
   gen split merge   : 951.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 157.19 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4465558033090376e-22,7.459885851260414e-23,-5.322158150883597e-23)
    sum a = (2.601583715575334e-25,8.42835314999407e-26,-3.577359433715828e-26)
    sum e = 7.857038971100901e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 49.415936299165246 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7623e+04 | 2592 |      1 | 4.498e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 612450.7937110817 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 188                                                     [SPH][rank=0]
Info: time since start : 21.187335453000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008512050000000001 s
sph::RenderFieldGetter compute custom field took :  0.000676633 s
rho_t_ampl=-0.000675418, rho_t_phi=3.14159 rad
eps_t_ampl=-5.13536e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.66969e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8485.28s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 8131.728184287645, dt = 49.415936299165246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.59 us   (5.2%)
   patch tree reduce : 2.12 us    (1.0%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 194.52 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.331789254449856e-22,7.93805974636913e-23,-5.53200358885658e-23)
    sum a = (-1.0468014661263511e-26,-1.1214183913666544e-26,-1.6619361747650566e-26)
    sum e = 7.857973360334374e-16
    sum de = -1.9259299443872359e-32
Info: cfl dt = 49.41640669456749 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6220e+04 | 2592 |      1 | 4.610e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3858563.2115631346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8181.14412058681, dt = 49.41640669456749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (3.4%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 142.89 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.370815016030607e-22,7.647071504566112e-23,-5.566804285898043e-23)
    sum a = (5.1274467023434445e-27,8.20702927152485e-26,-5.802318562289964e-27)
    sum e = 7.858086532734198e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 49.41693232768356 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7885e+04 | 2592 |      1 | 5.413e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3286560.729864236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8230.560527281377, dt = 49.41693232768356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (2.2%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.6%)
   LB compute        : 157.08 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.379287714268533e-22,8.284008199279907e-23,-5.568750594004838e-23)
    sum a = (-4.066855037262136e-26,7.041889681198727e-26,9.466944717097267e-27)
    sum e = 7.858184330532324e-16
    sum de = 3.0814879110195774e-32
Info: cfl dt = 49.41749667040257 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5662e+04 | 2592 |      1 | 4.657e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3820308.849794742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8279.977459609061, dt = 49.41749667040257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.4%)
   patch tree reduce : 1.26 us    (0.7%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.8%)
   LB compute        : 155.32 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.412408261925881e-22,8.60279748217612e-23,-5.484239315593622e-23)
    sum a = (2.9138690391826083e-25,-6.863914823023999e-26,-7.879265070215543e-26)
    sum e = 7.858284039674558e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 49.41809935247803 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5282e+04 | 2592 |      1 | 4.689e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3794333.3535121917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8329.394956279464, dt = 49.41809935247803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.4%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.87 us    (1.1%)
   LB compute        : 155.81 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.204442032449512e-22,7.920207706994712e-23,-6.091696032795508e-23)
    sum a = (-3.766103334599008e-25,-7.38461236367839e-27,1.2830241972686268e-25)
    sum e = 7.858385551750014e-16
    sum de = -3.0814879110195774e-32
Info: cfl dt = 49.41874006871451 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6787e+04 | 2592 |      1 | 5.540e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3211303.563160591 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8378.813055631943, dt = 49.41874006871451 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.7%)
   patch tree reduce : 1.93 us    (1.2%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 141.84 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5392419870633207e-22,8.034561051347024e-23,-4.945929401435036e-23)
    sum a = (3.2502245282385366e-25,-6.543312285672014e-26,4.0776563568473e-26)
    sum e = 7.858488669452361e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 49.41941849672226 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf 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 | 2592 |      1 | 6.896e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2579695.459172069 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8428.231795700658, dt = 49.41941849672226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (1.8%)
   patch tree reduce : 931.00 ns  (0.6%)
   gen split merge   : 541.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 641.00 ns  (0.4%)
   LB compute        : 153.03 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 1.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.217279454022127e-22,7.567840543297628e-23,-4.9606848721898263e-23)
    sum a = (1.2062663122236828e-25,3.237415705658072e-26,-2.1778532775164317e-25)
    sum e = 7.858593190178992e-16
    sum de = 0
Info: cfl dt = 49.42013429524591 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.3981e+04 | 2592 |      1 | 7.628e-02 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2332414.123015502 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8477.65121419738, dt = 7.63036940711936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (1.8%)
   patch tree reduce : 441.00 ns  (0.3%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.4%)
   LB compute        : 134.97 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 1.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2375625801068596e-22,7.834076631630946e-23,-5.765762038130243e-23)
    sum a = (-6.870026388469946e-27,-2.715626114447234e-26,-5.216847746627929e-26)
    sum e = 7.857179920421207e-16
    sum de = 3.774822690998982e-32
Info: cfl dt = 49.42026306474661 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5877e+04 | 2592 |      1 | 5.650e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 486188.3539566891 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 196                                                     [SPH][rank=0]
Info: time since start : 21.822908739000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000792597 s
sph::RenderFieldGetter compute custom field took :  0.000672808 s
rho_t_ampl=-0.000854329, rho_t_phi=3.14159 rad
eps_t_ampl=-4.77454e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.7732e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8838.83s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 8485.2815836045, dt = 49.42026306474661 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.85 us   (4.8%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 201.97 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.248089265796404e-22,7.676958626664857e-23,-5.960394138752093e-23)
    sum a = (-2.7101501909843663e-25,-4.22465879121262e-26,-2.321294762904917e-25)
    sum e = 7.858674434185463e-16
    sum de = 1.5176327961771419e-31
Info: cfl dt = 49.421006891608016 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6274e+04 | 2592 |      1 | 4.606e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3862574.331409419 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8534.701846669246, dt = 49.421006891608016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (2.4%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 138.15 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.435772369188041e-22,7.430901360365994e-23,-7.55228737866562e-23)
    sum a = (-1.1101110158741124e-25,-2.1801344718599844e-26,-8.18266304473744e-26)
    sum e = 7.858801043903319e-16
    sum de = 3.004450713244088e-32
Info: cfl dt = 49.421801840375544 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6359e+04 | 2592 |      1 | 4.599e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3868526.292672579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8584.122853560853, dt = 49.421801840375544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.6%)
   patch tree reduce : 1.31 us    (0.8%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 143.67 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4670956778252223e-22,7.373594308126991e-23,-7.585283431177803e-23)
    sum a = (-9.08899476576772e-26,1.9375474386100732e-25,-3.922079706208758e-26)
    sum e = 7.858908788431919e-16
    sum de = 8.397054557528348e-32
Info: cfl dt = 49.42263307729386 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5657e+04 | 2592 |      1 | 4.657e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3820378.0601447104 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8633.544655401229, dt = 49.42263307729386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (2.1%)
   patch tree reduce : 941.00 ns  (0.6%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 149.51 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5009864707769267e-22,8.86470094072868e-23,-7.673840084657533e-23)
    sum a = (2.75101932606906e-25,2.580715266063027e-25,-1.3433364720662685e-25)
    sum e = 7.859016916768599e-16
    sum de = 2.5422275265911513e-32
Info: cfl dt = 49.423500070555654 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7126e+04 | 2592 |      1 | 4.537e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3921251.276886677 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8682.967288478523, dt = 49.423500070555654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (2.5%)
   patch tree reduce : 1.43 us    (1.0%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.9%)
   LB compute        : 133.71 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 722.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.287628524240059e-22,1.0298500521091368e-22,-8.572800361560739e-23)
    sum a = (3.13438685701689e-25,-3.4116834684461166e-26,-4.1229770902134946e-26)
    sum e = 7.859125366238608e-16
    sum de = -4.1600086798764294e-32
Info: cfl dt = 49.42440238302026 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7867e+04 | 2592 |      1 | 4.479e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3972185.6909952136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8732.390788549079, dt = 49.42440238302026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (1.8%)
   patch tree reduce : 421.00 ns  (0.3%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.6%)
   LB compute        : 134.41 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 1.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1040533957516597e-22,9.408024750318419e-23,-8.546500068424986e-23)
    sum a = (-4.706218806992003e-26,-5.710670258714065e-26,1.0535756310908753e-25)
    sum e = 7.859233925868093e-16
    sum de = -2.619264724366641e-32
Info: cfl dt = 49.42533956152154 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9261e+04 | 2592 |      1 | 4.374e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4067993.3210042873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8781.815190932099, dt = 49.42533956152154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (2.5%)
   patch tree reduce : 1.06 us    (0.7%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.7%)
   LB compute        : 133.75 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.57 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.218049699316484e-22,9.068836002204472e-23,-7.663517166202111e-23)
    sum a = (1.7230226766994695e-25,-5.0328251738605976e-26,3.8835864959880847e-26)
    sum e = 7.8593423821616615e-16
    sum de = -2.0800043399382147e-32
Info: cfl dt = 49.426311135510545 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7383e+04 | 2592 |      1 | 4.517e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3939104.523950158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8831.24053049362, dt = 7.594452427732904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (2.6%)
   patch tree reduce : 961.00 ns  (0.5%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 163.16 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.143592654195315e-22,9.047353379541549e-23,-7.798416329268951e-23)
    sum a = (-3.0162926077844325e-26,-2.3366356004830474e-26,1.3494797273745625e-26)
    sum e = 7.857329980319551e-16
    sum de = 8.011868568650901e-32
Info: cfl dt = 49.426476282349114 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8770e+04 | 2592 |      1 | 4.410e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 619897.5555709788 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 204                                                     [SPH][rank=0]
Info: time since start : 22.362337367000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008003890000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006465980000000001 s
rho_t_ampl=-0.00101159, rho_t_phi=3.14159 rad
eps_t_ampl=-4.3671e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.6802e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9192.39s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 8838.834982921353, dt = 49.426476282349114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.95 us   (5.4%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 832.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.6%)
   LB compute        : 192.82 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.190577617151087e-22,8.942086522646103e-23,-7.741338878181904e-23)
    sum a = (4.207264335712616e-26,5.64109243671405e-26,-7.671310374820604e-26)
    sum e = 7.859425614606189e-16
    sum de = -5.315566646508771e-32
Info: cfl dt = 49.42747441744114 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7561e+04 | 2592 |      1 | 4.503e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3951412.2632791963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8888.261459203703, dt = 49.42747441744114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (2.4%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 142.21 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1315254779170563e-22,9.417712991911502e-23,-8.343445309499187e-23)
    sum a = (-6.814865592650114e-26,-1.9082741174832792e-25,-4.742963897737687e-26)
    sum e = 7.859552906345419e-16
    sum de = -2.311115933264683e-32
Info: cfl dt = 49.42851825088446 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8274e+04 | 2592 |      1 | 4.448e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4000482.6486439575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8937.688933621144, dt = 49.42851825088446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.9%)
   patch tree reduce : 1.06 us    (0.7%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 132.72 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2039285355866073e-22,7.863462291949511e-23,-8.505512601790876e-23)
    sum a = (-1.1442104169263722e-25,-5.514424366341557e-26,-4.9338576153956444e-26)
    sum e = 7.859659866472368e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 49.429595025173036 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6371e+04 | 2592 |      1 | 4.598e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3869903.040159419 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8987.117451872029, dt = 49.429595025173036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (3.4%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 143.41 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.26323742325209e-22,7.92698747026275e-23,-8.754108982435773e-23)
    sum a = (-1.3195966745444278e-25,-1.4813905755504874e-25,2.0224583406633785e-26)
    sum e = 7.859765621315213e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 49.43070406104663 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4896e+04 | 2592 |      1 | 4.722e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3768698.1645018607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9036.547046897202, dt = 49.43070406104663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (3.0%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (1.0%)
   LB compute        : 142.08 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.338207965236164e-22,6.964802664924019e-23,-8.4822135024363e-23)
    sum a = (-2.5436648799645109e-26,-1.2169194367998957e-25,1.1121349816949632e-25)
    sum e = 7.859870182077385e-16
    sum de = 3.0814879110195774e-32
Info: cfl dt = 49.43184480103072 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6890e+04 | 2592 |      1 | 4.556e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3905696.653140081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9085.977750958249, dt = 49.43184480103072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (3.1%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 150.77 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.344369927591019e-22,6.428479261785598e-23,-7.707582358378578e-23)
    sum a = (-1.482070291322841e-25,8.989564297166347e-26,-8.243194245077782e-26)
    sum e = 7.859973345111044e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.43301667321494 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5702e+04 | 2592 |      1 | 4.653e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3824265.4820680707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9135.40959575928, dt = 49.43301667321494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.8%)
   patch tree reduce : 1.44 us    (0.9%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 139.23 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4324346395791606e-22,7.396521140716834e-23,-8.59368088529641e-23)
    sum a = (2.0714132484797248e-25,5.552998726131402e-26,1.3641233425625866e-25)
    sum e = 7.86007490730645e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 49.43421909024416 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6797e+04 | 2592 |      1 | 4.564e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3899515.871073715 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9184.842612432494, dt = 7.545769805714372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (3.0%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 1.05 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 138.72 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.323830053074835e-22,7.353054433610806e-23,-7.949840639036794e-23)
    sum a = (3.181649629798882e-25,1.506931826143342e-27,-2.78491232472147e-25)
    sum e = 7.857474192512537e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 49.43441569634302 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9774e+04 | 2592 |      1 | 4.336e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 626450.1278098563 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 212                                                     [SPH][rank=0]
Info: time since start : 22.921348530000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008451750000000001 s
sph::RenderFieldGetter compute custom field took :  0.000622341 s
rho_t_ampl=-0.00114323, rho_t_phi=3.14159 rad
eps_t_ampl=-3.92337e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-5.41833e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9545.94s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 9192.388382238209, dt = 49.43441569634302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.36 us   (5.5%)
   patch tree reduce : 2.07 us    (1.0%)
   gen split merge   : 991.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 180.05 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.186983139110755e-22,7.339595199430767e-23,-9.483084114722262e-23)
    sum a = (-1.28850604417325e-25,-1.8377452810524925e-25,-1.602163185909168e-26)
    sum e = 7.860151860608352e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 49.43564253084745 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7260e+04 | 2592 |      1 | 4.527e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3931418.1919816607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9241.822797934552, dt = 49.43564253084745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (2.4%)
   patch tree reduce : 1.69 us    (1.1%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 138.22 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (54.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.340261952687782e-22,5.9742752397695e-23,-8.913536514037448e-23)
    sum a = (-8.483479666200022e-26,-1.035695360938159e-25,-2.4689791277442776e-25)
    sum e = 7.860267001306907e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 49.436908476891716 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7717e+04 | 2592 |      1 | 4.491e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3962875.256158677 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9291.258440465399, dt = 49.436908476891716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.6%)
   patch tree reduce : 1.64 us    (1.0%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 150.21 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.377490475248367e-22,5.659958995952496e-23,-1.0704799330344701e-22)
    sum a = (-9.432496085191218e-26,1.2782721103039066e-26,-9.468644184781767e-26)
    sum e = 7.860362516692385e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 49.438203179745244 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6609e+04 | 2592 |      1 | 4.579e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3886898.8661653167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9340.69534894229, dt = 49.438203179745244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.9%)
   patch tree reduce : 1.64 us    (1.1%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 131.09 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3953344912343026e-22,6.010380487942482e-23,-1.0796668857524162e-22)
    sum a = (-1.0929359499029377e-25,1.5919080506980337e-25,-8.751459118074926e-26)
    sum e = 7.860455334585554e-16
    sum de = 2.2340787354891936e-32
Info: cfl dt = 49.43952583068931 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7532e+04 | 2592 |      1 | 4.505e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3950398.9096384402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9390.133552122035, dt = 49.43952583068931 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.8%)
   patch tree reduce : 971.00 ns  (0.7%)
   gen split merge   : 952.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.7%)
   LB compute        : 130.12 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4663254325308655e-22,7.159710829644494e-23,-1.1211608676124155e-22)
    sum a = (-6.917665257587073e-26,-7.915716215689062e-26,3.473102145210788e-26)
    sum e = 7.860545560910991e-16
    sum de = 4.237045877651919e-32
Info: cfl dt = 49.44087576665827 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7332e+04 | 2592 |      1 | 4.521e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3936787.156145913 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9439.573077952724, dt = 49.44087576665827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.9%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 144.01 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5008580965612007e-22,6.178651002899778e-23,-1.0737707208266865e-22)
    sum a = (3.3298315858421574e-25,4.5024999587937606e-26,1.0819744970996166e-26)
    sum e = 7.860633019674309e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 49.44225231210983 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7476e+04 | 2592 |      1 | 4.510e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3946733.014706318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9489.013953719383, dt = 49.44225231210983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (3.2%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 133.91 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2365355863810502e-22,6.708655987607929e-23,-1.074332167468093e-22)
    sum a = (7.159620566524062e-26,-1.1899923103887693e-28,8.093979331630149e-27)
    sum e = 7.860717538454733e-16
    sum de = 2.5422275265911513e-32
Info: cfl dt = 49.443617340171095 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7152e+04 | 2592 |      1 | 4.535e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3924601.627524975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9538.456206031493, dt = 7.485575523567604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.4%)
   patch tree reduce : 1.55 us    (0.8%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.7%)
   LB compute        : 173.54 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2969998419880685e-22,6.596850069098931e-23,-1.0744001264945983e-22)
    sum a = (-2.9137436737375634e-25,-2.1322360570949125e-25,2.471156243565076e-25)
    sum e = 7.857598231962215e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.44383075670643 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8669e+04 | 2592 |      1 | 4.418e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609964.8332907582 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 220                                                     [SPH][rank=0]
Info: time since start : 23.469447943000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008522860000000001 s
sph::RenderFieldGetter compute custom field took :  0.000677204 s
rho_t_ampl=-0.00124592, rho_t_phi=3.14159 rad
eps_t_ampl=-3.45458e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.01951e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9899.50s, niter_max = -1, max_walltime = -1.00s)    [SPH][rank=0]
---------------- t = 9545.94178155506, dt = 49.44383075670643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.45 us   (5.1%)
   patch tree reduce : 2.14 us    (0.9%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 199.22 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4430896994844314e-22,5.463225510352165e-23,-9.432706225364788e-23)
    sum a = (-5.576254995604802e-26,-1.5111491980680614e-25,1.0069678099839503e-25)
    sum e = 7.860780592455197e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 49.44519808180165 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7957e+04 | 2592 |      1 | 4.472e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980028.9222932444 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9595.385612311768, dt = 49.44519808180165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.6%)
   patch tree reduce : 1.68 us    (1.1%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.7%)
   LB compute        : 137.98 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4121515134944285e-22,4.869735464273191e-23,-9.296784422626805e-23)
    sum a = (3.483905717802551e-25,1.1014529648256872e-27,-4.115655706779149e-27)
    sum e = 7.860871944501288e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 49.44659679951004 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4035e+04 | 2592 |      1 | 4.797e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3710763.9720013766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9644.830810393569, dt = 49.44659679951004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (3.3%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 136.05 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.156044953120752e-22,5.250866475681417e-23,-9.576258524173914e-23)
    sum a = (-5.503543037478661e-26,9.555706811649577e-26,-6.230959148381475e-26)
    sum e = 7.860946482305089e-16
    sum de = -1.4637067577342992e-32
Info: cfl dt = 49.448019443063366 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7178e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3926769.996773486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9694.277407193078, dt = 49.448019443063366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.6%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 136.56 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2777437096291457e-22,5.957406065484236e-23,-1.0028241717219329e-22)
    sum a = (-2.6113622202888495e-26,2.2553987920938406e-25,8.834929426292326e-26)
    sum e = 7.861017076199154e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 49.44946513029369 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7141e+04 | 2592 |      1 | 4.536e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3924295.884957401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9743.725426636141, dt = 49.44946513029369 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (2.6%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 135.03 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.285831285219893e-22,7.393492311564545e-23,-9.218870007040553e-23)
    sum a = (-1.3768886829300258e-25,1.5434827092967564e-25,4.6437796763550945e-26)
    sum e = 7.861083938318799e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 49.45093313890742 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7444e+04 | 2592 |      1 | 4.512e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3945275.595929493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9793.174891766435, dt = 49.45093313890742 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (3.0%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 131.19 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.372740629266499e-22,7.980944757810148e-23,-9.09285582546173e-23)
    sum a = (-2.480731426551885e-25,-4.1366483311208216e-26,9.74414327682314e-26)
    sum e = 7.861146938021299e-16
    sum de = 1.0400021699691074e-32
Info: cfl dt = 49.452422736296576 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6923e+04 | 2592 |      1 | 4.554e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3909590.1455605645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9842.625824905343, dt = 49.452422736296576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.8%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 139.05 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5274315592165145e-22,7.292718552219513e-23,-8.484875463237904e-23)
    sum a = (1.0806501362885205e-25,-1.6736414237797235e-25,3.0766384335938785e-26)
    sum e = 7.86120595093831e-16
    sum de = 1.4637067577342992e-32
Info: cfl dt = 49.45393317929285 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7276e+04 | 2592 |      1 | 4.525e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3933909.0980652086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9892.078247641639, dt = 7.416933230277209 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (2.7%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 156.14 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.432691388010613e-22,6.856767739001978e-23,-8.626918375456744e-23)
    sum a = (1.4590030494345478e-25,-1.8800791350673805e-25,-7.596868740976557e-26)
    sum e = 7.857689905484337e-16
    sum de = 2.0029671421627253e-32
Info: cfl dt = 49.454166170681056 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5875e+04 | 2592 |      1 | 4.639e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 575589.3737991164 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 228                                                     [SPH][rank=0]
Info: time since start : 24.025803228 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007292920000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006125680000000001 s
rho_t_ampl=-0.00131707, rho_t_phi=3.14159 rad
eps_t_ampl=-2.97258e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.51913e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10253.05s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 9899.495180871916, dt = 49.454166170681056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.32 us   (5.2%)
   patch tree reduce : 2.09 us    (1.0%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.6%)
   LB compute        : 189.97 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3593897108309794e-22,5.919294970190534e-23,-9.042197529570729e-23)
    sum a = (1.9704940652184417e-25,1.4837382393924642e-25,1.1256095200181595e-25)
    sum e = 7.861248918954768e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 49.45569536136926 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7993e+04 | 2592 |      1 | 4.469e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3983343.371349448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9948.949347042597, dt = 49.45569536136926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.2%)
   patch tree reduce : 1.38 us    (0.8%)
   gen split merge   : 761.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 157.27 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2403868128528346e-22,7.485159524981502e-23,-8.019340708613604e-23)
    sum a = (-1.7039671290526186e-25,-1.1780727989340933e-26,-2.4171747175080847e-26)
    sum e = 7.861307226263806e-16
    sum de = -5.585196838722984e-33
Info: cfl dt = 49.457247875887106 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8761e+04 | 2592 |      1 | 4.411e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4036192.7697113315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9998.405042403967, dt = 49.457247875887106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (2.3%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 150.59 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.41844185006501e-22,7.030494158127638e-23,-8.476998053598002e-23)
    sum a = (-2.1210579647175733e-25,4.064876613832518e-27,1.7948817669740685e-26)
    sum e = 7.861353358973904e-16
    sum de = 5.970382827600431e-33
Info: cfl dt = 49.45881901428808 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8485e+04 | 2592 |      1 | 4.432e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4017401.3220235356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10047.862290279854, dt = 49.45881901428808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.5%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 139.32 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.540076419465541e-22,7.09010793455547e-23,-8.284066960323349e-23)
    sum a = (1.8403647332616568e-26,-1.9933595470936156e-26,1.6809898052038587e-26)
    sum e = 7.861394673324154e-16
    sum de = 1.7333369499485123e-33
Info: cfl dt = 49.460407809749185 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7624e+04 | 2592 |      1 | 5.443e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3271392.666806446 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10097.321109294142, dt = 49.460407809749185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.5%)
   patch tree reduce : 1.95 us    (1.2%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 151.48 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.473642762827256e-22,6.932087298385058e-23,-8.203740999997303e-23)
    sum a = (9.170482305047017e-26,-1.2262474094452806e-25,-2.5343781899488494e-26)
    sum e = 7.861431488543714e-16
    sum de = 9.437056727497456e-33
Info: cfl dt = 49.4620134704274 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5541e+04 | 2592 |      1 | 4.667e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3815414.7027572063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10146.781517103891, dt = 49.4620134704274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.5%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 138.08 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4099049647192207e-22,6.071348211176801e-23,-8.4333433582207e-23)
    sum a = (-6.016036976822915e-25,-1.048735815766695e-25,1.759527393914559e-26)
    sum e = 7.86146373249536e-16
    sum de = -1.3481509610710651e-33
Info: cfl dt = 49.463635196616394 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7651e+04 | 2592 |      1 | 4.496e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3960473.3133790144 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10196.243530574318, dt = 49.463635196616394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.6%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (1.0%)
   LB compute        : 142.17 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.875036841849007e-22,5.596574226937707e-23,-8.240118129176464e-23)
    sum a = (1.4655220525768917e-25,2.7541417091847136e-26,-9.903109566667857e-26)
    sum e = 7.861491341436801e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 49.4652721808666 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7378e+04 | 2592 |      1 | 4.517e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3941806.7665768806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10245.707165770935, dt = 7.34141441783504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (2.8%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 139.97 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6802610630385007e-22,5.944267766843512e-23,-8.601259170554542e-23)
    sum a = (2.2402805029554366e-26,6.703486230067882e-26,-8.904100660650902e-26)
    sum e = 7.857740320596992e-16
    sum de = -5.7777898331617076e-34
Info: cfl dt = 49.465518181745544 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9036e+04 | 2592 |      1 | 4.391e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 601956.576512873 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 236                                                     [SPH][rank=0]
Info: time since start : 24.575288750000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000842211 s
sph::RenderFieldGetter compute custom field took :  0.000700299 s
rho_t_ampl=-0.00135487, rho_t_phi=3.14159 rad
eps_t_ampl=-2.4896e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.55128e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10606.60s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 10253.04858018877, dt = 49.465518181745544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.31 us   (5.2%)
   patch tree reduce : 1.83 us    (0.8%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.7%)
   LB compute        : 189.13 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6780466078172245e-22,6.290456921408776e-23,-9.03803805448125e-23)
    sum a = (3.9522710204909397e-25,-2.990573103199404e-26,-6.759010188721522e-26)
    sum e = 7.861510081352049e-16
    sum de = 2.2148194360453212e-33
Info: cfl dt = 49.467089629505004 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6014e+04 | 2592 |      1 | 4.627e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3848286.958308758 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10302.514098370515, dt = 49.467089629505004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (3.3%)
   patch tree reduce : 1.45 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 132.56 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.386605044564924e-22,5.90270661450217e-23,-9.3193326114251e-23)
    sum a = (4.7300382415505666e-26,-9.561162167344117e-26,-1.6440188491585075e-26)
    sum e = 7.861529371522239e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 49.46865271435955 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8839e+04 | 2592 |      1 | 4.405e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4042509.242353304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10351.98118800002, dt = 49.46865271435955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (3.6%)
   patch tree reduce : 1.74 us    (1.2%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.8%)
   LB compute        : 131.62 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4496207377094994e-22,5.2671639835372765e-23,-9.274148141405116e-23)
    sum a = (9.80232414807418e-26,-1.4614378814375327e-25,5.465962898583186e-26)
    sum e = 7.861542489385347e-16
    sum de = -1.179632090937182e-33
Info: cfl dt = 49.470228779235896 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9636e+04 | 2592 |      1 | 4.346e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4097365.1551327985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10401.44984071438, dt = 49.470228779235896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (2.9%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 152.88 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.388330073088744e-22,4.4195030195561215e-23,-8.827885097370803e-23)
    sum a = (1.4448367541444547e-25,-3.037565556740518e-26,8.282240708304124e-26)
    sum e = 7.861550373759724e-16
    sum de = 2.7685242950566515e-34
Info: cfl dt = 49.47083771805985 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8183e+04 | 2592 |      1 | 4.455e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3997649.1619873485 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10450.920069493615, dt = 49.47083771805985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.8%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 138.15 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (58.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.305729288657447e-22,4.555489425105412e-23,-8.34849475757189e-23)
    sum a = (2.1376062034635225e-25,1.4754592229317923e-25,1.6977707284077263e-25)
    sum e = 7.861553287914799e-16
    sum de = 8.666684749742561e-34
Info: cfl dt = 49.470709172814026 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9448e+04 | 2592 |      1 | 4.360e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4084639.675617219 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10500.390907211675, dt = 49.470709172814026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (2.8%)
   patch tree reduce : 1.43 us    (0.9%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 142.96 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1827146964378603e-22,5.725530138328871e-23,-7.293509530172557e-23)
    sum a = (3.159961407806085e-25,1.5201539629254395e-26,-5.095068068688988e-26)
    sum e = 7.861551258325331e-16
    sum de = -8.666684749742561e-34
Info: cfl dt = 49.46928364539392 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7603e+04 | 2592 |      1 | 4.500e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3957861.751063827 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10549.861616384489, dt = 49.46928364539392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (3.4%)
   patch tree reduce : 1.35 us    (0.9%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 137.40 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0019156603645385e-22,5.473405184489825e-23,-8.091536822711481e-23)
    sum a = (3.9615480634242753e-26,1.2652791572260321e-25,-1.1613813595663647e-25)
    sum e = 7.861544202396402e-16
    sum de = -5.585196838722984e-33
Info: cfl dt = 49.46772490101308 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8910e+04 | 2592 |      1 | 4.400e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4047583.1577950986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10599.330900029883, dt = 7.271079475740407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.8%)
   patch tree reduce : 1.59 us    (0.9%)
   gen split merge   : 792.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.9%)
   LB compute        : 154.00 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0652522890484295e-22,5.8404852368174e-23,-8.33722062012588e-23)
    sum a = (-1.5483886117516842e-25,3.937836364795047e-26,-9.854399318188809e-27)
    sum e = 7.857745022959569e-16
    sum de = 4.4296388720906425e-33
Info: cfl dt = 49.46748360723847 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7707e+04 | 2592 |      1 | 4.492e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 582766.9634139255 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 244                                                     [SPH][rank=0]
Info: time since start : 25.112062309000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001023583 s
sph::RenderFieldGetter compute custom field took :  0.0007207190000000001 s
rho_t_ampl=-0.00135837, rho_t_phi=3.14159 rad
eps_t_ampl=-2.01786e-07, eps_t_phi=6.28319 rad
vx_t_ampl=6.32937e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10960.16s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 10606.601979505624, dt = 49.46748360723847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.91 us   (4.8%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 219.35 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1511988264770897e-22,6.003711046266084e-23,-8.347327978996044e-23)
    sum a = (1.2686983038561286e-25,-1.5693481470951573e-25,-5.20795125074083e-26)
    sum e = 7.861536423419053e-16
    sum de = 6.7407548053553255e-34
Info: cfl dt = 49.46583490832171 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5275e+04 | 2592 |      1 | 5.725e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3110620.469208571 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10656.069463112863, dt = 49.46583490832171 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.6%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 149.64 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0179784841072734e-22,4.74195297344765e-23,-8.709382140501409e-23)
    sum a = (1.4038422536147162e-25,2.120086382518474e-26,-1.1739465155825464e-25)
    sum e = 7.86151414146519e-16
    sum de = -8.281498760865114e-33
Info: cfl dt = 49.46420271558763 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3293e+04 | 2592 |      1 | 5.987e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2974312.396574943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10705.535298021185, dt = 49.46420271558763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (2.7%)
   patch tree reduce : 1.29 us    (0.7%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 161.19 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.944099122956872e-22,5.287272600922506e-23,-9.451608819006099e-23)
    sum a = (-7.762628357190858e-26,-1.8083965447751635e-27,2.868540957154659e-26)
    sum e = 7.861492474068426e-16
    sum de = -2.8888949165808538e-33
Info: cfl dt = 49.46258587092156 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2802e+04 | 2592 |      1 | 6.056e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2940481.038246858 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10754.999500736772, dt = 49.46258587092156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (3.0%)
   patch tree reduce : 1.53 us    (0.8%)
   gen split merge   : 1.05 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 163.74 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.035950874308935e-22,5.221440698420438e-23,-8.948436677767548e-23)
    sum a = (9.267013697731722e-26,-7.610789256055409e-26,-1.5143282896041032e-25)
    sum e = 7.861465676423509e-16
    sum de = -2.1185229388259594e-33
Info: cfl dt = 49.46098536129969 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7242e+04 | 2592 |      1 | 4.528e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3932444.9930226384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10804.462086607695, dt = 49.46098536129969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.7%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 145.96 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9537271891363336e-22,4.6610772175401734e-23,-1.0142894063424707e-22)
    sum a = (-1.6031733112363807e-25,3.0166549922740157e-26,4.8145111376508017e-26)
    sum e = 7.861434245490563e-16
    sum de = -3.659266894335748e-33
Info: cfl dt = 49.4594019715891 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6578e+04 | 2592 |      1 | 4.581e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3886640.2437470276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10853.923071968995, dt = 49.4594019715891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (3.3%)
   patch tree reduce : 1.28 us    (0.8%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 142.07 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0950030135429657e-22,5.073429239382424e-23,-9.411205142500168e-23)
    sum a = (2.5728750286600124e-25,-4.692702844948081e-26,-1.5784306543238482e-25)
    sum e = 7.861398244613563e-16
    sum de = -1.3481509610710651e-33
Info: cfl dt = 49.4578364774769 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5629e+04 | 2592 |      1 | 4.659e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3821344.923338046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10903.382473940585, dt = 49.4578364774769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.7%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 136.00 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8645712963145197e-22,4.650496373978369e-23,-1.0701265396334855e-22)
    sum a = (7.153352294271808e-26,-2.9629829111140944e-26,-2.5710802910058193e-26)
    sum e = 7.861357747050866e-16
    sum de = 2.6963019221421302e-33
Info: cfl dt = 49.45628964485529 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7349e+04 | 2592 |      1 | 4.520e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3939402.275687934 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10952.840310418062, dt = 7.315068404415797 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.9%)
   patch tree reduce : 1.35 us    (0.9%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 134.01 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9000667669628012e-22,4.6716981780443917e-23,-1.0393324232876101e-22)
    sum a = (-1.6827803688400015e-25,2.612678557461823e-25,-1.4002370482423789e-27)
    sum e = 7.857706286761795e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 49.45606653144668 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9568e+04 | 2592 |      1 | 4.351e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 605202.7705842138 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 252                                                     [SPH][rank=0]
Info: time since start : 25.87934053 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000833829 s
sph::RenderFieldGetter compute custom field took :  0.000651346 s
rho_t_ampl=-0.00132749, rho_t_phi=3.14159 rad
eps_t_ampl=-1.5693e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.2049e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11313.71s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 10960.155378822477, dt = 49.45606653144668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.83 us   (5.3%)
   patch tree reduce : 2.15 us    (1.0%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 193.42 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (74.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9998135325820228e-22,6.070019337459323e-23,-1.0391357581925413e-22)
    sum a = (-5.064763979820909e-27,4.37253125131344e-26,-3.7586737043195843e-26)
    sum e = 7.861324908496192e-16
    sum de = 1.0400021699691074e-32
Info: cfl dt = 49.454537597085334 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6527e+04 | 2592 |      1 | 5.571e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3195873.0711058625 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11009.611445353925, dt = 49.454537597085334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (3.0%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 156.26 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9537271891363336e-22,5.74847702938992e-23,-1.066672314951615e-22)
    sum a = (-2.5812745134780324e-26,-1.509083606477436e-25,-8.368388016178455e-28)
    sum e = 7.86126378894003e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 49.45303357934784 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7585e+04 | 2592 |      1 | 5.447e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3268467.7710127058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11059.06598295101, dt = 49.45303357934784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (2.8%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 158.54 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9820978908118135e-22,4.520893576890774e-23,-1.0579989110037306e-22)
    sum a = (-2.1901343249374076e-25,1.1612307349263196e-25,2.859676321167265e-26)
    sum e = 7.86121013753078e-16
    sum de = -3.0429693121318326e-32
Info: cfl dt = 49.451550376889216 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7136e+04 | 2592 |      1 | 4.537e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3924355.120794086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11108.519016530357, dt = 49.451550376889216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.8%)
   patch tree reduce : 1.80 us    (1.0%)
   gen split merge   : 802.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.8%)
   LB compute        : 163.32 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.128572870955355e-22,5.75551253816585e-23,-1.0365794636942788e-22)
    sum a = (7.282478702668233e-26,-1.879815671749278e-26,5.57328630856685e-26)
    sum e = 7.861151959118063e-16
    sum de = -3.851859888774472e-34
Info: cfl dt = 49.45008890058834 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6550e+04 | 2592 |      1 | 4.584e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3883979.1180336615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11157.970566907246, dt = 49.45008890058834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (2.7%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 138.26 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0180426712151367e-22,5.328888914059668e-23,-1.0023099023016923e-22)
    sum a = (-2.242662446411293e-25,-3.6882611874014124e-26,6.095835602002172e-26)
    sum e = 7.861089799017069e-16
    sum de = 1.2711137632955757e-32
Info: cfl dt = 49.448649859406935 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6291e+04 | 2592 |      1 | 4.605e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3866120.665707298 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11207.420655807835, dt = 49.448649859406935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (3.3%)
   patch tree reduce : 1.64 us    (1.1%)
   gen split merge   : 1.06 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 134.81 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.207908136274118e-22,5.1017568153448084e-23,-9.708748128227017e-23)
    sum a = (6.681978220902337e-27,9.19654460577084e-26,-2.1093402165292015e-26)
    sum e = 7.861023780410461e-16
    sum de = 2.0800043399382147e-32
Info: cfl dt = 49.447233951078594 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5521e+04 | 2592 |      1 | 4.669e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3813096.9317304413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11256.869305667242, dt = 49.447233951078594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (3.1%)
   patch tree reduce : 1.26 us    (0.7%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 153.04 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.156943572630835e-22,5.875101143503245e-23,-1.0015916600438451e-22)
    sum a = (6.516495833442843e-26,2.7497852599693975e-25,-4.2233908085685267e-26)
    sum e = 7.860954035704831e-16
    sum de = -1.617781153285278e-32
Info: cfl dt = 49.44584186105702 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5197e+04 | 2592 |      1 | 4.696e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3790730.5602101097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11306.316539618321, dt = 7.392238521009858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.8%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 145.59 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.139356305076352e-22,6.530717289528756e-23,-1.0099403889767614e-22)
    sum a = (7.139562095316851e-26,3.379284336242281e-26,1.15881890592751e-25)
    sum e = 7.857626329427145e-16
    sum de = -3.158525108795067e-32
Info: cfl dt = 49.44564263982006 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8616e+04 | 2592 |      1 | 4.422e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 601805.4956270824 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 260                                                     [SPH][rank=0]
Info: time since start : 26.45447581 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000851114 s
sph::RenderFieldGetter compute custom field took :  0.000745737 s
rho_t_ampl=-0.00126301, rho_t_phi=3.14159 rad
eps_t_ampl=-1.15525e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.721e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11667.26s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 11313.708778139331, dt = 49.44564263982006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.85 us   (5.5%)
   patch tree reduce : 2.03 us    (0.9%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.6%)
   LB compute        : 188.99 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.094553703787924e-22,6.608739727907006e-23,-9.467976949811625e-23)
    sum a = (4.068108691712586e-26,-1.3301117012475833e-25,-1.8826412404850975e-25)
    sum e = 7.860899456223069e-16
    sum de = -2.9274135154685985e-32
Info: cfl dt = 49.4442416309811 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7687e+04 | 2592 |      1 | 4.493e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3961643.0882287547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11363.15442077915, dt = 49.4442416309811 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (3.0%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 147.37 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0678518669168842e-22,5.53875317637402e-23,-1.1150769391315173e-22)
    sum a = (1.5502690934273604e-25,3.4049450757749435e-27,-1.0223455442560206e-25)
    sum e = 7.860805619194805e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 49.442846608650854 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8057e+04 | 2592 |      1 | 4.465e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3986905.3782640584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11412.598662410132, dt = 49.442846608650854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.6%)
   patch tree reduce : 1.32 us    (0.9%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 135.63 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9838951298319797e-22,5.892782685872402e-23,-1.1443562789179872e-22)
    sum a = (-4.358956524217153e-26,-1.368472548013836e-25,8.112335235114494e-26)
    sum e = 7.860725466470791e-16
    sum de = -1.1170393677445968e-32
Info: cfl dt = 49.44147738387446 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9220e+04 | 2592 |      1 | 4.377e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4066664.652867153 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11462.041509018782, dt = 49.44147738387446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (1.6%)
   patch tree reduce : 451.00 ns  (0.3%)
   gen split merge   : 570.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.3%)
   LB compute        : 150.73 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 1.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.046798495537795e-22,4.8694997772365065e-23,-1.0589190107160493e-22)
    sum a = (-8.176334325839596e-26,-1.8448436096694e-25,-7.191172851839754e-27)
    sum e = 7.86064182060238e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 49.44013480159513 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8112e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3990448.324223834 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11511.482986402656, dt = 49.44013480159513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (1.5%)
   patch tree reduce : 310.00 ns  (0.2%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.2%)
   LB compute        : 129.31 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0924997163363059e-22,3.839602587720033e-23,-1.0843063392703353e-22)
    sum a = (-1.6050537929120567e-25,2.2742369090469416e-26,-6.93683007871598e-27)
    sum e = 7.860555242377287e-16
    sum de = 2.311115933264683e-32
Info: cfl dt = 49.438819504890866 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8835e+04 | 2592 |      1 | 4.406e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4040006.205031264 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11560.92312120425, dt = 49.438819504890866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (1.9%)
   patch tree reduce : 350.00 ns  (0.3%)
   gen split merge   : 591.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.5%)
   LB compute        : 125.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 1.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1900641202881824e-22,4.4642885711440226e-23,-1.087672952467298e-22)
    sum a = (2.1797289929986667e-25,-6.692095604084491e-26,-1.4116188358450428e-25)
    sum e = 7.860465902353241e-16
    sum de = -3.389636702121535e-32
Info: cfl dt = 49.43753212367088 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9804e+04 | 2592 |      1 | 4.334e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4106465.498433669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11610.361940709141, dt = 49.43753212367088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (1.9%)
   patch tree reduce : 341.00 ns  (0.3%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.4%)
   LB compute        : 120.24 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 1.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9820978908118135e-22,3.9117880109769854e-23,-1.1906395449772943e-22)
    sum a = (-5.907219770523793e-26,-1.4885780311634816e-25,-4.8638715391462996e-26)
    sum e = 7.860373978676154e-16
    sum de = 3.4666738998970245e-32
Info: cfl dt = 49.43627327332188 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8745e+04 | 2592 |      1 | 4.412e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4033598.674229448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11659.799472832812, dt = 7.4627046233745205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (1.6%)
   patch tree reduce : 290.00 ns  (0.2%)
   gen split merge   : 802.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 440.00 ns  (0.3%)
   LB compute        : 152.57 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 1.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0691356090741457e-22,3.598149994217675e-23,-1.1713987231410148e-22)
    sum a = (3.0388583878925453e-26,-1.5737981306854877e-25,-1.1943596110563808e-25)
    sum e = 7.85751257446283e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 49.4360954427121 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0747e+04 | 2592 |      1 | 4.267e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 629632.8780644492 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 268                                                     [SPH][rank=0]
Info: time since start : 26.989889027 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007794270000000001 s
sph::RenderFieldGetter compute custom field took :  0.000698706 s
rho_t_ampl=-0.00116657, rho_t_phi=3.14159 rad
eps_t_ampl=-7.86188e-08, eps_t_phi=6.28319 rad
vx_t_ampl=5.1429e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12020.82s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 11667.262177456187, dt = 49.4360954427121 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.18 us   (5.4%)
   patch tree reduce : 1.86 us    (0.9%)
   gen split merge   : 942.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 180.85 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0390960425942258e-22,2.81693898438266e-23,-1.233084893530636e-22)
    sum a = (-1.415626605448953e-25,-6.792946228118014e-26,-1.7033183950922517e-25)
    sum e = 7.860303168099459e-16
    sum de = 1.9259299443872359e-32
Info: cfl dt = 49.43486012141948 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6949e+04 | 2592 |      1 | 4.551e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3910195.577155081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11716.698272898899, dt = 49.43486012141948 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.3%)
   patch tree reduce : 1.26 us    (0.8%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.7%)
   LB compute        : 141.26 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1541193398848598e-22,2.702217065621914e-23,-1.3298686676462098e-22)
    sum a = (-1.231088670342607e-26,-1.4256450674596252e-26,-8.860114684045266e-26)
    sum e = 7.860186006438026e-16
    sum de = -4.08297148210094e-32
Info: cfl dt = 49.43366483002962 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4975e+04 | 2592 |      1 | 4.715e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3774589.0878614765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11766.133133020317, dt = 49.43366483002962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (2.5%)
   patch tree reduce : 852.00 ns  (0.6%)
   gen split merge   : 591.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 671.00 ns  (0.5%)
   LB compute        : 131.11 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.57 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.11971505007025e-22,2.7644158775265765e-23,-1.3534657348122863e-22)
    sum a = (6.264511288902247e-26,5.647321532264727e-28,-1.3369511989934575e-25)
    sum e = 7.860087497682459e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 49.4324997385364 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5517e+04 | 2592 |      1 | 4.669e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3811697.6865105 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 11815.566797850348, dt = 49.4324997385364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (2.6%)
   patch tree reduce : 1.21 us    (0.8%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 135.15 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0596359171104103e-22,2.803850205092729e-23,-1.4307003763572838e-22)
    sum a = (-1.988546689304932e-25,1.602259024963337e-25,5.074876175000664e-26)
    sum e = 7.859986855017839e-16
    sum de = 6.933347799794049e-32
Info: cfl dt = 49.4313655731586 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4847e+04 | 2592 |      1 | 4.726e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3765613.4626280162 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11864.999297588884, dt = 49.4313655731586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (3.2%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 143.93 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.230630372457647e-22,3.9904979221145023e-23,-1.3600269597558138e-22)
    sum a = (-1.9806486662670925e-25,1.3734367258123588e-25,-8.987912394569299e-26)
    sum e = 7.859884620463806e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.430259314834224 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6646e+04 | 2592 |      1 | 5.557e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3202462.922014457 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11914.430663162042, dt = 49.430259314834224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.4%)
   patch tree reduce : 12.05 us   (6.7%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 152.53 us  (84.7%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 822.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.340775449550687e-22,4.6128253113967755e-23,-1.439211585930058e-22)
    sum a = (1.5379832798129433e-25,-3.8802808930913466e-26,-1.4063343544954657e-25)
    sum e = 7.859780994392374e-16
    sum de = 4.468157470978387e-32
Info: cfl dt = 49.429183664586255 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7161e+04 | 2592 |      1 | 4.535e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3924312.5472547445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11963.860922476877, dt = 49.429183664586255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.3%)
   patch tree reduce : 2.00 us    (1.2%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 154.23 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.176199704989758e-22,3.985677777459325e-23,-1.5212695389271484e-22)
    sum a = (-1.6195961845372852e-25,1.0896514731845107e-25,2.0931869258085293e-26)
    sum e = 7.859676183015665e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 49.428140574842175 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4557e+04 | 2592 |      1 | 4.751e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3745415.26331622 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 12013.290106141463, dt = 7.525470631577264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (2.6%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 140.68 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2550214734456162e-22,4.4328826466785566e-23,-1.4797641116523535e-22)
    sum a = (-3.651519317827812e-25,-7.755860581993503e-27,-1.0146817844369962e-25)
    sum e = 7.857376791136084e-16
    sum de = -4.8533434598558343e-32
Info: cfl dt = 49.42799675000706 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0358e+04 | 2592 |      1 | 4.294e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 630869.1707294673 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 276                                                     [SPH][rank=0]
Info: time since start : 27.546613545000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007255660000000001 s
sph::RenderFieldGetter compute custom field took :  0.000575702 s
rho_t_ampl=-0.0010406, rho_t_phi=3.14159 rad
eps_t_ampl=-4.71429e-08, eps_t_phi=6.28319 rad
vx_t_ampl=6.43464e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12374.37s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 12020.81557677304, dt = 49.42799675000706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.99 us   (4.7%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 229.59 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.461190463901819e-22,4.350636019629512e-23,-1.5345233894171675e-22)
    sum a = (-1.1088573614236618e-25,-2.5516177503845576e-26,-2.496517863758308e-25)
    sum e = 7.859596321007275e-16
    sum de = 2.1570415377137042e-32
Info: cfl dt = 49.426979358384116 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7252e+04 | 2592 |      1 | 4.527e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3930364.261913716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12070.243573523048, dt = 49.426979358384116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.4%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.9%)
   LB compute        : 156.72 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4498935329179177e-22,4.1806191640227364e-23,-1.6945408207934302e-22)
    sum a = (-5.1638026814065156e-26,-1.0812999798259222e-25,-1.1075619685255101e-25)
    sum e = 7.85946754717433e-16
    sum de = 3.543711097672514e-32
Info: cfl dt = 49.42600814566708 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8647e+04 | 2592 |      1 | 4.420e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4026033.7878743885 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12119.670552881433, dt = 49.42600814566708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (2.6%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 140.98 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4891760429301206e-22,3.442012347031839e-23,-1.7149572404898952e-22)
    sum a = (2.3043422453734683e-25,-1.6093593124153235e-26,-1.1324664863203814e-25)
    sum e = 7.859360643173605e-16
    sum de = -4.08297148210094e-32
Info: cfl dt = 49.42507082775044 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3430e+04 | 2592 |      1 | 4.851e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3667792.116108421 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12169.0965610271, dt = 49.42507082775044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.4%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (1.0%)
   LB compute        : 140.44 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.261183435800472e-22,3.589954855075078e-23,-1.7715449422359513e-22)
    sum a = (-2.0671508233481923e-25,8.635289384809289e-26,-2.2698600562979341e-26)
    sum e = 7.859253153795234e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 49.42416799855734 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4280e+04 | 2592 |      1 | 4.775e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3726124.6591594825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12218.52163185485, dt = 49.42416799855734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.8%)
   patch tree reduce : 1.36 us    (0.9%)
   gen split merge   : 982.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (1.0%)
   LB compute        : 133.72 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.505864690974521e-22,4.269866824350323e-23,-1.760386818265929e-22)
    sum a = (3.492430568065616e-25,-1.7397393752621984e-27,1.2089301287516683e-25)
    sum e = 7.85914557005466e-16
    sum de = 2.0800043399382147e-32
Info: cfl dt = 49.42330007692766 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7908e+04 | 2592 |      1 | 4.476e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3975054.7608545623 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12267.945799853407, dt = 49.42330007692766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (2.5%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 135.89 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1512951071388843e-22,4.0435546156460586e-23,-1.6651530216118442e-22)
    sum a = (-2.3938531731356497e-25,-1.1499424580757962e-25,2.3375504910968754e-27)
    sum e = 7.859038102747595e-16
    sum de = 2.3881531310401725e-32
Info: cfl dt = 49.422467466023726 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7649e+04 | 2592 |      1 | 4.496e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3957243.052026971 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12317.369099930334, dt = 49.422467466023726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (2.2%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.9%)
   LB compute        : 138.02 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4555419984098682e-22,3.195369624104615e-23,-1.6932947574467248e-22)
    sum a = (2.3230216966851843e-25,-5.831310014131462e-26,-8.254480353039712e-26)
    sum e = 7.858930965068531e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 49.4216705516087 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8952e+04 | 2592 |      1 | 4.397e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4046583.120280047 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12366.791567396358, dt = 7.577408693536199 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (1.7%)
   patch tree reduce : 581.00 ns  (0.4%)
   gen split merge   : 570.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.4%)
   LB compute        : 132.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 1.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2986687067925086e-22,3.2912115068415727e-23,-1.720524991465745e-22)
    sum a = (-3.5127397701629176e-26,-5.992022638174007e-26,2.1410231538038724e-26)
    sum e = 7.857232998754924e-16
    sum de = 1.771855548836257e-32
Info: cfl dt = 49.42156571566096 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0670e+04 | 2592 |      1 | 4.272e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 638500.643592958 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 284                                                     [SPH][rank=0]
Info: time since start : 28.092574724000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006457570000000001 s
sph::RenderFieldGetter compute custom field took :  0.000525306 s
rho_t_ampl=-0.000888286, rho_t_phi=3.14159 rad
eps_t_ampl=-2.18934e-08, eps_t_phi=6.28319 rad
vx_t_ampl=7.56356e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12727.92s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 12374.368976089894, dt = 49.42156571566096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.98 us   (4.6%)
   patch tree reduce : 2.36 us    (1.0%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 209.84 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (73.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3086818956191486e-22,2.9946094004094365e-23,-1.706005170884088e-22)
    sum a = (4.186202940945044e-25,3.4962708642376606e-26,2.4846298183564618e-26)
    sum e = 7.85885016215128e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 49.420795977942966 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2821e+04 | 2592 |      1 | 6.053e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2939295.2882559756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12423.790541805554, dt = 49.420795977942966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.7%)
   patch tree reduce : 1.59 us    (0.9%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.5%)
   LB compute        : 152.72 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0437175143603672e-22,3.4018164243870375e-23,-1.6928768535831959e-22)
    sum a = (4.7218894876226365e-25,-6.1553356157837e-26,3.9804632691679746e-26)
    sum e = 7.858722630954063e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 49.420077292791746 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3264e+04 | 2592 |      1 | 5.991e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2969610.363768484 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12473.211337783498, dt = 49.420077292791746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.5%)
   patch tree reduce : 1.67 us    (0.9%)
   gen split merge   : 801.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.7%)
   LB compute        : 169.27 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7605239944684722e-22,2.8590968762424166e-23,-1.6695091093512617e-22)
    sum a = (6.063926576830132e-26,-1.3075939125989017e-25,5.653595680633236e-26)
    sum e = 7.858618121144617e-16
    sum de = 4.1600086798764294e-32
Info: cfl dt = 49.419395271478685 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2790e+04 | 2592 |      1 | 6.057e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2937090.464976198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12522.63141507629, dt = 49.419395271478685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (2.8%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 1.09 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.6%)
   LB compute        : 161.93 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8157249072307183e-22,2.04197242736534e-23,-1.6374350647318533e-22)
    sum a = (-7.772657592794463e-26,1.2632757586491596e-25,-1.8340072939298038e-26)
    sum e = 7.858514608959645e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.41875036192813 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3136e+04 | 2592 |      1 | 6.009e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2960774.861019736 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12572.05081034777, dt = 49.41875036192813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.7%)
   patch tree reduce : 1.46 us    (0.8%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 155.57 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9176540345172844e-22,3.3014037175237365e-23,-1.6650001401457345e-22)
    sum a = (2.707893612973555e-25,-3.2976988552090426e-26,-1.0252906301733427e-25)
    sum e = 7.858412507372569e-16
    sum de = 3.4666738998970245e-32
Info: cfl dt = 49.41814285673597 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3334e+04 | 2592 |      1 | 5.981e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2974330.624570912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12621.469560709698, dt = 49.41814285673597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.6%)
   patch tree reduce : 1.83 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.7%)
   LB compute        : 161.70 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (55.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6896614273876352e-22,2.744861375408446e-23,-1.7364706723967222e-22)
    sum a = (2.2001635605410136e-26,-2.5734489673381097e-26,-5.21864527076736e-27)
    sum e = 7.858312016231605e-16
    sum de = -5.007417855406813e-32
Info: cfl dt = 49.41757303221229 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7112e+04 | 2592 |      1 | 5.502e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3233599.389074259 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12670.887703566434, dt = 49.41757303221229 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.5%)
   patch tree reduce : 1.48 us    (0.8%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.6%)
   LB compute        : 156.74 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7479433213273092e-22,2.6354524442087107e-23,-1.715005099606447e-22)
    sum a = (2.955365001492527e-25,1.4729313462625633e-26,-1.0102972657632318e-25)
    sum e = 7.858213334732353e-16
    sum de = -6.625199008692091e-32
Info: cfl dt = 49.41704114653505 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7201e+04 | 2592 |      1 | 4.531e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3926045.146704154 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12720.305276598647, dt = 7.617098808101218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (3.0%)
   patch tree reduce : 2.24 us    (1.4%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 137.69 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6588516156133584e-22,2.746621506256879e-23,-1.7463743892438136e-22)
    sum a = (-5.009603184001077e-26,3.9587077525599725e-27,1.1736553834503367e-25)
    sum e = 7.85709610897153e-16
    sum de = -8.011868568650901e-32
Info: cfl dt = 49.41697843079175 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9465e+04 | 2592 |      1 | 4.359e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 629098.2573742819 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 292                                                     [SPH][rank=0]
Info: time since start : 28.735053473 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000682732 s
sph::RenderFieldGetter compute custom field took :  0.000544966 s
rho_t_ampl=-0.000713491, rho_t_phi=3.14159 rad
eps_t_ampl=-3.50885e-09, eps_t_phi=6.28318 rad
vx_t_ampl=8.50112e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13081.48s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 12727.922375406748, dt = 49.41697843079175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.33 us   (5.5%)
   patch tree reduce : 1.95 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 180.74 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7071203207263921e-22,2.762242040709495e-23,-1.6800581949141217e-22)
    sum a = (7.66108234670435e-26,1.3999990191900533e-26,-1.5626286442955927e-26)
    sum e = 7.858139816178777e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 49.4164745233589 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.1268e+04 | 2592 |      1 | 6.281e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832406.2478387957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12777.33935383754, dt = 49.4164745233589 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.5%)
   patch tree reduce : 1.66 us    (1.0%)
   gen split merge   : 721.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.9%)
   LB compute        : 153.63 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6270148101132722e-22,2.8560504959278214e-23,-1.7206404254584067e-22)
    sum a = (-2.695357068469048e-26,1.5803910798520571e-25,-8.374991009917804e-26)
    sum e = 7.858026242874466e-16
    sum de = -2.9274135154685985e-32
Info: cfl dt = 49.41602526679131 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3601e+04 | 2592 |      1 | 4.836e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3678846.500413702 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12826.7558283609, dt = 49.41602526679131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (2.6%)
   patch tree reduce : 1.79 us    (1.1%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 153.14 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6680945591456414e-22,3.993100038633219e-23,-1.7788584487580292e-22)
    sum a = (5.584027653197597e-25,2.3052354741694145e-26,-1.0169363019663464e-25)
    sum e = 7.857934666326126e-16
    sum de = -2.1570415377137042e-32
Info: cfl dt = 49.4156145339728 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.2059e+04 | 2592 |      1 | 6.163e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2886625.0081914314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12876.171853627691, dt = 49.4156145339728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (2.4%)
   patch tree reduce : 1.50 us    (0.8%)
   gen split merge   : 1.03 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.9%)
   LB compute        : 175.84 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2393246786202882e-22,3.773519954327874e-23,-1.8335445176901644e-22)
    sum a = (-2.866606266400616e-25,2.830364879189657e-26,-8.673545603061251e-26)
    sum e = 7.8578455472087625e-16
    sum de = -9.090389337507753e-32
Info: cfl dt = 49.41524261906874 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2019e+04 | 2592 |      1 | 8.095e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2197546.874275099 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12925.587468161664, dt = 49.41524261906874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (2.7%)
   patch tree reduce : 2.05 us    (1.2%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 157.53 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5761786206857154e-22,3.9264006072514385e-23,-1.872709216880843e-22)
    sum a = (-1.537607183477808e-25,1.0370097392760535e-25,-8.687798154986302e-26)
    sum e = 7.857759201239451e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 49.414909684062025 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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 | 2592 |      1 | 6.301e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2823156.8413028205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12975.002710780733, dt = 49.414909684062025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (3.1%)
   patch tree reduce : 1.41 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 159.78 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6457574456092908e-22,4.6250973348122376e-23,-1.9156751076645745e-22)
    sum a = (2.7300206140240105e-25,1.9881603090856329e-25,-1.0581726954084975e-25)
    sum e = 7.857675797435876e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 49.41461587440982 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3305e+04 | 2592 |      1 | 5.985e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2972101.9778751014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13024.417620464796, dt = 49.41461587440982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.3%)
   patch tree reduce : 1.46 us    (0.8%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 160.72 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3779688316045342e-22,5.842591376294157e-23,-1.9726437209647276e-22)
    sum a = (-1.3195966745444278e-25,-3.422775372079987e-26,-1.281614683032855e-25)
    sum e = 7.857595501190438e-16
    sum de = 6.162975822039155e-32
Info: cfl dt = 49.41436131710959 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9723e+04 | 2592 |      1 | 6.525e-02 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2726223.6938053602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13073.832236339205, dt = 7.643538384398198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (1.9%)
   patch tree reduce : 791.00 ns  (0.5%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 136.88 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.34 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5022350724274509e-22,5.240491231449487e-23,-1.9879604419829535e-22)
    sum a = (2.0613213301535962e-25,5.781193218639615e-26,-4.7016362189738477e-26)
    sum e = 7.856980366267897e-16
    sum de = 8.782240546405795e-32
Info: cfl dt = 49.41434265049141 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.4681e+04 | 2592 |      1 | 7.474e-02 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 368179.3636725566 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 300                                                     [SPH][rank=0]
Info: time since start : 29.436421336000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008503740000000001 s
sph::RenderFieldGetter compute custom field took :  0.000820118 s
rho_t_ampl=-0.000520633, rho_t_phi=3.14159 rad
eps_t_ampl=7.54553e-09, eps_t_phi=5.30579e-07 rad
vx_t_ampl=9.22363e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13435.03s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 13081.475774723604, dt = 49.41434265049141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.07 us   (4.4%)
   patch tree reduce : 1.98 us    (0.8%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 227.51 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.386184781411008e-22,5.561426770764872e-23,-2.008092089630704e-22)
    sum a = (1.5478871499715039e-25,5.311924892979886e-26,-1.8901017926937204e-27)
    sum e = 7.857536771339448e-16
    sum de = 3.0814879110195774e-32
Info: cfl dt = 49.41411618576319 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5482e+04 | 2592 |      1 | 4.672e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3807784.3965275628 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13130.890117374094, dt = 49.41411618576319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (2.4%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.9%)
   LB compute        : 156.88 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.295295836676891e-22,5.812358245567088e-23,-1.9978766442576154e-22)
    sum a = (-8.039059163515242e-26,1.5175741771266212e-25,1.6191879925638896e-27)
    sum e = 7.857448465126871e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 49.41394663537815 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6222e+04 | 2592 |      1 | 4.610e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3858557.4243224408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13180.304233559857, dt = 49.41394663537815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.4%)
   patch tree reduce : 1.36 us    (0.8%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 161.98 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4460071659393956e-22,6.805809192900058e-23,-1.9962094973011068e-22)
    sum a = (-6.289521695188739e-25,-4.339686484129171e-26,6.738686356381331e-26)
    sum e = 7.857379060612583e-16
    sum de = -6.625199008692091e-32
Info: cfl dt = 49.413816533087214 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6171e+04 | 2592 |      1 | 5.614e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3168723.8448971487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13229.718180195236, dt = 49.413816533087214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (2.1%)
   patch tree reduce : 1.34 us    (0.8%)
   gen split merge   : 842.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 156.65 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8860739774486505e-22,6.109439247999296e-23,-1.9466618741172132e-22)
    sum a = (8.76617874477666e-26,-1.4028094578194035e-25,2.8660327690819636e-26)
    sum e = 7.857313304911073e-16
    sum de = -5.238529448733282e-32
Info: cfl dt = 49.41372601498891 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0966e+04 | 2592 |      1 | 6.327e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2811477.9576599235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13279.131996728323, dt = 49.41372601498891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (2.0%)
   patch tree reduce : 861.00 ns  (0.5%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 149.23 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6324065271737709e-22,5.1768858192514194e-23,-1.9420678680100995e-22)
    sum a = (4.140757967116206e-25,1.3585292562993138e-25,-5.3367927136290344e-27)
    sum e = 7.857251406975986e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 49.41367511088176 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0439e+04 | 2592 |      1 | 6.410e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2775339.0885958597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13328.545722743313, dt = 49.41367511088176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (2.7%)
   patch tree reduce : 1.47 us    (0.8%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 160.50 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3679556427778941e-22,6.5302860323978e-23,-1.9531045953877233e-22)
    sum a = (1.7306699688472188e-26,-8.076125220294389e-26,-1.2534183304781796e-25)
    sum e = 7.857193488181517e-16
    sum de = 2.619264724366641e-32
Info: cfl dt = 49.41366383411858 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1569e+04 | 2592 |      1 | 5.026e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3539195.056731903 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13377.959397854194, dt = 49.41366383411858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.5%)
   patch tree reduce : 1.43 us    (0.8%)
   gen split merge   : 961.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.9%)
   LB compute        : 158.42 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4418991910361586e-22,5.596082794393131e-23,-2.0446900377872113e-22)
    sum a = (-1.2566318797705404e-25,-5.474809375416085e-26,5.129549847459208e-26)
    sum e = 7.857139663683831e-16
    sum de = 9.090389337507753e-32
Info: cfl dt = 49.41369217962085 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5356e+04 | 2592 |      1 | 4.682e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3799076.437360856 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13427.373061688313, dt = 7.656112352142372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (2.6%)
   patch tree reduce : 1.56 us    (0.8%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.7%)
   LB compute        : 170.11 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5035188145847125e-22,5.61833265357973e-23,-1.997121308190417e-22)
    sum a = (1.6346400379426938e-25,-1.8985989413201718e-25,1.8198555424370608e-25)
    sum e = 7.856897873498336e-16
    sum de = -4.776306262080345e-32
Info: cfl dt = 49.413718213520454 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6339e+04 | 2592 |      1 | 4.601e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 599078.7957095024 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 308                                                     [SPH][rank=0]
Info: time since start : 30.034214860000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008246350000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006804290000000001 s
rho_t_ampl=-0.000314591, rho_t_phi=3.14159 rad
eps_t_ampl=1.09897e-08, eps_t_phi=3.72781e-07 rad
vx_t_ampl=9.71284e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13788.58s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 13435.029174040455, dt = 49.413718213520454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.33 us   (3.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 292.43 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3797660706247003e-22,4.6286175965091033e-23,-1.9021925904758076e-22)
    sum a = (1.8673183039463474e-26,-9.94390629902811e-26,2.0373582147023698e-26)
    sum e = 7.857101740553356e-16
    sum de = -3.389636702121535e-32
Info: cfl dt = 49.413774084672326 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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 | 2592 |      1 | 6.452e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2756980.277219263 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13484.442892253976, dt = 49.413774084672326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (2.8%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.5%)
   LB compute        : 164.64 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4311157569151618e-22,4.360390704908469e-23,-1.9320544768663164e-22)
    sum a = (9.804204629749855e-26,7.99149375071357e-26,-1.1143198716506973e-25)
    sum e = 7.85704747875452e-16
    sum de = -4.0059342843254506e-32
Info: cfl dt = 49.41388776783099 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0989e+04 | 2592 |      1 | 6.324e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813101.1767234835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13533.856666338648, dt = 49.41388776783099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (2.5%)
   patch tree reduce : 1.68 us    (0.9%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.6%)
   LB compute        : 179.45 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3741176051327496e-22,5.198493807359388e-23,-2.0196824070668943e-22)
    sum a = (-9.265133216056046e-26,6.66495839261116e-26,2.0922796422620656e-26)
    sum e = 7.857007264572585e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 49.41404088083755 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3141e+04 | 2592 |      1 | 6.008e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2960813.566877681 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13583.270554106479, dt = 49.41404088083755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.2%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.5%)
   LB compute        : 196.24 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4583310906491064e-22,5.4950282164512e-23,-1.9766427857805057e-22)
    sum a = (8.925079446371288e-26,7.383126097562328e-26,3.543261823132719e-26)
    sum e = 7.856971503685991e-16
    sum de = 4.622231866529366e-32
Info: cfl dt = 49.41423340053141 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5317e+04 | 2592 |      1 | 5.720e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3110157.893588714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13632.684594987317, dt = 49.41423340053141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (2.4%)
   patch tree reduce : 1.80 us    (0.9%)
   gen split merge   : 761.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 174.10 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3638476678746572e-22,5.877503145430309e-23,-1.9555490844678146e-22)
    sum a = (4.6391482938928894e-26,1.056899260957716e-25,4.902330837077089e-26)
    sum e = 7.856940299386766e-16
    sum de = -3.697785493223493e-32
Info: cfl dt = 49.41446522542485 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4353e+04 | 2592 |      1 | 5.844e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3044006.284786424 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13682.098828387849, dt = 49.41446522542485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.2%)
   patch tree reduce : 1.34 us    (0.7%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 165.94 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3551182212052786e-22,6.478434884327158e-23,-1.9279666111270968e-22)
    sum a = (-2.0323149003062928e-25,1.5753932345756166e-25,5.294902291724894e-26)
    sum e = 7.856913713317685e-16
    sum de = 1.8488927466117464e-32
Info: cfl dt = 49.41473623794627 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4089e+04 | 2592 |      1 | 5.879e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3025881.5366741945 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13731.513293613274, dt = 49.41473623794627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.2%)
   patch tree reduce : 1.38 us    (0.7%)
   gen split merge   : 1.11 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 182.94 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.523031695375088e-22,7.385228221427173e-23,-1.9008320556874953e-22)
    sum a = (7.698848687024177e-26,-4.2516723512215995e-26,1.5251316843256242e-25)
    sum e = 7.856891798953741e-16
    sum de = 2.311115933264683e-32
Info: cfl dt = 49.41504630244136 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1035e+04 | 2592 |      1 | 6.317e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2816299.855110935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13780.92802985122, dt = 7.654543506090704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (3.2%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 149.34 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4742494933991495e-22,6.858362387462952e-23,-1.8645581889101674e-22)
    sum a = (1.2248674101322453e-25,6.980299009232638e-26,1.719629456116785e-25)
    sum e = 7.85685733537313e-16
    sum de = 2.9274135154685985e-32
Info: cfl dt = 49.4151163841803 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.0254e+04 | 2592 |      1 | 6.439e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 427949.1969864065 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 316                                                     [SPH][rank=0]
Info: time since start : 30.884271791000003 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00084106 s
sph::RenderFieldGetter compute custom field took :  0.000717905 s
rho_t_ampl=-0.000100575, rho_t_phi=3.14159 rad
eps_t_ampl=6.73586e-09, eps_t_phi=6.3147e-07 rad
vx_t_ampl=9.95639e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14142.14s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 13788.582573357311, dt = 49.4151163841803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.29 us   (4.7%)
   patch tree reduce : 1.89 us    (0.8%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 214.60 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3972249639634572e-22,7.246413571437666e-23,-1.7788381033706415e-22)
    sum a = (-2.534669909282527e-25,1.1106124776542928e-25,1.214796517883142e-25)
    sum e = 7.856878599678959e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 49.41545274651459 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1342e+04 | 2592 |      1 | 6.270e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2837370.6708212313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13837.99768974149, dt = 49.41545274651459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (2.2%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 711.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 147.37 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6308660365850568e-22,7.897030143514779e-23,-1.7312815726432716e-22)
    sum a = (-2.708677147005087e-26,-8.894193514265848e-26,-1.2900502688210583e-25)
    sum e = 7.856863754145402e-16
    sum de = -6.162975822039155e-32
Info: cfl dt = 49.41584644724716 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0678e+04 | 2592 |      1 | 6.372e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2791847.903412001 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13887.413142488005, dt = 49.41584644724716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.3%)
   patch tree reduce : 2.00 us    (1.2%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 155.05 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5969752436333524e-22,6.963147841049425e-23,-1.8569195676494166e-22)
    sum a = (-9.904163983822513e-26,3.67047129206987e-26,4.200965939892151e-27)
    sum e = 7.856856829023376e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 49.41599458554228 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9398e+04 | 2592 |      1 | 6.579e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2704010.0741336625 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13936.828988935253, dt = 49.41599458554228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (2.5%)
   patch tree reduce : 1.46 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 147.54 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6431899612947677e-22,7.455142022819909e-23,-1.8219311841122705e-22)
    sum a = (7.268414266802238e-26,1.5259043681537276e-26,-6.887553451895979e-26)
    sum e = 7.856854694694333e-16
    sum de = 6.471124613141112e-32
Info: cfl dt = 49.41554322826804 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1517e+04 | 2592 |      1 | 6.243e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849445.756169373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13986.244983520795, dt = 49.41554322826804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (2.4%)
   patch tree reduce : 1.66 us    (1.0%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 141.79 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5620574569558386e-22,7.477587452100778e-23,-1.8740221434010957e-22)
    sum a = (-9.415336689900673e-26,-2.8692918292936913e-26,1.4867526675740299e-25)
    sum e = 7.856857360254072e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 49.41512110857877 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1244e+04 | 2592 |      1 | 6.285e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830660.901498716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14035.660526749063, dt = 49.41512110857877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.4%)
   patch tree reduce : 1.69 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 147.18 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6231635836414876e-22,7.227468345382455e-23,-1.7468021251504375e-22)
    sum a = (3.0284373852731734e-26,-5.635743592676922e-26,1.7935809841389196e-25)
    sum e = 7.856864820733021e-16
    sum de = 4.776306262080345e-32
Info: cfl dt = 49.414738768617084 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1059e+04 | 2592 |      1 | 6.313e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2817934.6445056903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14085.075647857642, dt = 49.414738768617084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.5%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 150.64 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.609299168343063e-22,6.880476851968902e-23,-1.6505918101475647e-22)
    sum a = (-6.478729493123015e-26,-5.644061908266363e-26,1.232543746778548e-25)
    sum e = 7.856877061802381e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 49.41439639586737 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0663e+04 | 2592 |      1 | 6.374e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790741.5860254397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14134.49038662626, dt = 7.645586047905454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.3%)
   patch tree reduce : 1.45 us    (0.8%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.8%)
   LB compute        : 155.63 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6503789173754322e-22,6.837040232569686e-23,-1.6550300451355147e-22)
    sum a = (2.8670763868195353e-25,-5.766417480785622e-26,1.1429528647869076e-25)
    sum e = 7.856863156279719e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 49.41436618565003 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1985e+04 | 2592 |      1 | 6.174e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445836.135212529 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 324                                                     [SPH][rank=0]
Info: time since start : 31.560879847000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006967340000000001 s
sph::RenderFieldGetter compute custom field took :  0.0005631130000000001 s
rho_t_ampl=0.000116001, rho_t_phi=3.14159 rad
eps_t_ampl=-5.1088e-09, eps_t_phi=6.28318 rad
vx_t_ampl=9.94815e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14495.69s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 14142.135972674165, dt = 49.41436618565003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.20 us   (4.7%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.6%)
   LB compute        : 233.93 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (79.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4398452035845402e-22,6.551919093594778e-23,-1.5988942411408342e-22)
    sum a = (-4.397349691762207e-26,-1.4181018384254386e-25,7.829396476874882e-26)
    sum e = 7.856890001676427e-16
    sum de = 4.0059342843254506e-32
Info: cfl dt = 49.41405102737283 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3447e+04 | 2592 |      1 | 4.850e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3668096.540389677 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14191.550338859815, dt = 49.41405102737283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (3.1%)
   patch tree reduce : 1.47 us    (0.8%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 158.52 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5677059224477894e-22,5.643049704724817e-23,-1.5691009339092823e-22)
    sum a = (-6.368564608289657e-27,2.0574687300487127e-25,1.1618706992098245e-25)
    sum e = 7.8569159946300775e-16
    sum de = -7.087422195345028e-32
Info: cfl dt = 49.41379531239087 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4157e+04 | 2592 |      1 | 4.786e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3716840.562971777 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14240.96438988719, dt = 49.41379531239087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (3.0%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 155.07 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5553819977380785e-22,7.518416470243058e-23,-1.5023262338410544e-22)
    sum a = (-1.9409391615490659e-25,-6.611766742535269e-26,1.0004665214336237e-25)
    sum e = 7.856943116895135e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 49.413580025385656 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9513e+04 | 2592 |      1 | 6.560e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2711778.2654883224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14290.37818519958, dt = 49.413580025385656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (3.0%)
   patch tree reduce : 1.62 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 156.57 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7145660252385092e-22,6.520086299788933e-23,-1.4568773978231454e-22)
    sum a = (3.8719117702170484e-26,-1.554493168240865e-25,-7.853404457193362e-26)
    sum e = 7.856974862026557e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 49.413405267321885 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9559e+04 | 2592 |      1 | 6.552e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2714904.1215198673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14339.791765224965, dt = 49.413405267321885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.6%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.8%)
   LB compute        : 154.94 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.615974627560823e-22,5.531344078571855e-23,-1.5398053012810247e-22)
    sum a = (-1.6310671227589093e-25,-4.4282527636745866e-27,2.1619670010460886e-26)
    sum e = 7.857011165437085e-16
    sum de = -1.1555579666323415e-31
Info: cfl dt = 49.413271117367046 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1250e+04 | 2592 |      1 | 6.284e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830954.8368664617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14389.205170492287, dt = 49.413271117367046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.9%)
   patch tree reduce : 1.15 us    (0.7%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 150.59 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7607807428999245e-22,5.882668201766166e-23,-1.504377634685597e-22)
    sum a = (-1.6106325552165626e-26,-5.295997727381118e-26,4.7240053472112356e-26)
    sum e = 7.857051956685656e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 49.413177636229456 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2484e+04 | 2592 |      1 | 6.101e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2915637.2621710957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14438.618441609655, dt = 49.413177636229456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (1.6%)
   patch tree reduce : 651.00 ns  (0.4%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.6%)
   LB compute        : 149.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 1.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.758726755448306e-22,5.500845173101291e-23,-1.4747048883775666e-22)
    sum a = (1.2448475279363036e-25,1.7663050353876843e-25,2.241748132221108e-26)
    sum e = 7.857097155880249e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.413124863844416 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0990e+04 | 2592 |      1 | 6.324e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813100.852381132 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14488.031619245885, dt = 7.657752745133621 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (1.9%)
   patch tree reduce : 761.00 ns  (0.5%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.6%)
   LB compute        : 139.53 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6832427166013277e-22,6.203513477961117e-23,-1.4791210239211578e-22)
    sum a = (1.9017938013337423e-25,-7.015356647920023e-26,-3.947623279430983e-26)
    sum e = 7.856915044595592e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 49.413139018922664 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1907e+04 | 2592 |      1 | 6.185e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 445714.10458198015 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 332                                                     [SPH][rank=0]
Info: time since start : 32.212420549 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008887810000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007528270000000001 s
rho_t_ampl=0.00032966, rho_t_phi=3.14159 rad
eps_t_ampl=-2.42433e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.68834e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14849.24s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 14495.689371991019, dt = 49.413139018922664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.76 us   (4.7%)
   patch tree reduce : 1.90 us    (0.8%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 221.53 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5923537718672108e-22,5.762487871528158e-23,-1.5009973035071985e-22)
    sum a = (-1.1068515143029406e-25,-1.3813401356466652e-25,3.9477798835965145e-26)
    sum e = 7.857135032188354e-16
    sum de = -3.697785493223493e-32
Info: cfl dt = 49.413114708272964 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2849e+04 | 2592 |      1 | 4.904e-02 | 0.1% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3627023.5371917384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14545.102511009942, dt = 49.413114708272964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (2.4%)
   patch tree reduce : 2.07 us    (1.2%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 159.42 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (56.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7176470064159368e-22,4.911938487693164e-23,-1.4619832607785087e-22)
    sum a = (-3.857494744036865e-26,2.4985848615962967e-25,-8.806033987843438e-26)
    sum e = 7.857199172287697e-16
    sum de = 6.933347799794049e-32
Info: cfl dt = 49.413149665900214 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3585e+04 | 2592 |      1 | 4.837e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3677469.880716601 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14594.515625718215, dt = 49.413149665900214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (2.8%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 161.45 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.721241484456269e-22,7.104971261720014e-23,-1.537006931708875e-22)
    sum a = (2.7633678224059993e-25,4.2972666862251987e-26,-1.432555718415137e-26)
    sum e = 7.857257674551143e-16
    sum de = -4.776306262080345e-32
Info: cfl dt = 49.41322535828763 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1297e+04 | 2592 |      1 | 6.276e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2834188.8943897896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14643.928775384116, dt = 49.41322535828763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (3.0%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.7%)
   LB compute        : 159.60 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5312476451815616e-22,6.806090011496959e-23,-1.5258683122997335e-22)
    sum a = (1.0812142807912234e-25,-3.029440063979149e-26,5.776009362566884e-26)
    sum e = 7.857320147419477e-16
    sum de = -7.395570986446986e-32
Info: cfl dt = 49.41334170491478 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1271e+04 | 2592 |      1 | 6.280e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832380.083058611 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14693.342000742405, dt = 49.41334170491478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (3.0%)
   patch tree reduce : 1.87 us    (1.1%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 156.16 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4932488773266202e-22,6.475355908996851e-23,-1.479517197324683e-22)
    sum a = (1.7559937887463234e-25,5.334362124535951e-26,-1.0925750540536587e-25)
    sum e = 7.85738648164963e-16
    sum de = 6.008901426488176e-32
Info: cfl dt = 49.41349863644789 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0541e+04 | 2592 |      1 | 6.394e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2782324.3127097692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14742.755342447319, dt = 49.41349863644789 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (2.9%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 157.07 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.381306561213414e-22,6.945566591036304e-23,-1.5747696417266956e-22)
    sum a = (-9.71582199099308e-26,1.036774679066594e-26,-4.140276430647965e-26)
    sum e = 7.857456548421463e-16
    sum de = -4.1600086798764294e-32
Info: cfl dt = 49.413696065048 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0700e+04 | 2592 |      1 | 5.112e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3479512.447608853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14792.168841083767, dt = 49.413696065048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.6%)
   patch tree reduce : 1.36 us    (0.8%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 157.55 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5027485692903555e-22,6.890656526106562e-23,-1.5784635770599024e-22)
    sum a = (1.685538408630993e-25,9.503212480080801e-26,6.391805248595475e-26)
    sum e = 7.857530210261231e-16
    sum de = -3.0814879110195774e-32
Info: cfl dt = 49.41393388224924 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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 | 2592 |      1 | 6.111e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2911104.9872725643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14841.582537148815, dt = 7.660234159058746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (3.4%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 157.60 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4272645304433772e-22,7.172889245227632e-23,-1.5475458504181692e-22)
    sum a = (-1.065606282883112e-28,-1.6270390232736817e-26,-6.608770226396847e-26)
    sum e = 7.857008073300133e-16
    sum de = 4.3140830754274083e-32
Info: cfl dt = 49.41399206157587 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3326e+04 | 2592 |      1 | 5.983e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 460953.0181882075 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 340                                                     [SPH][rank=0]
Info: time since start : 32.858889562 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000902772 s
sph::RenderFieldGetter compute custom field took :  0.000835942 s
rho_t_ampl=0.000535001, rho_t_phi=3.14159 rad
eps_t_ampl=-5.01849e-08, eps_t_phi=6.28319 rad
vx_t_ampl=9.18357e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15202.80s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 14849.242771307874, dt = 49.41399206157587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.48 us   (4.3%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 239.22 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4159675994594755e-22,7.049700144308543e-23,-1.5851817949855122e-22)
    sum a = (-1.6286851793030528e-25,-1.8883045284177694e-25,9.330671572693174e-27)
    sum e = 7.857589317644355e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 49.41425884131589 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4284e+04 | 2592 |      1 | 4.775e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3725561.2555354615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14898.65676336945, dt = 49.41425884131589 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.6%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 912.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 157.25 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.531504393613014e-22,5.690307462889007e-23,-1.5619374981526118e-22)
    sum a = (-2.112345066286941e-25,1.426562291985287e-25,-1.716448813915464e-26)
    sum e = 7.857685098804594e-16
    sum de = 1.3866695599588098e-32
Info: cfl dt = 49.41458316551263 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6015e+04 | 2592 |      1 | 4.627e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3844362.1730028517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14948.071022210766, dt = 49.41458316551263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.6%)
   patch tree reduce : 1.63 us    (1.1%)
   gen split merge   : 702.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.6%)
   LB compute        : 138.48 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6799049869924476e-22,7.214129462029659e-23,-1.5769654518193445e-22)
    sum a = (-2.4246930726167376e-25,1.0506150731704469e-25,2.692265669912381e-26)
    sum e = 7.857769177759977e-16
    sum de = -6.471124613141112e-32
Info: cfl dt = 49.414947469818706 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6773e+04 | 2592 |      1 | 4.566e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3896383.5304301432 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14997.48560537628, dt = 49.414947469818706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (3.0%)
   patch tree reduce : 1.46 us    (0.9%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 139.47 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7664292083918752e-22,7.640652793779805e-23,-1.5527688957281672e-22)
    sum a = (2.880709878968187e-25,-1.0214766668097073e-25,8.146878465822083e-26)
    sum e = 7.857856156585542e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 49.41535149480406 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6085e+04 | 2592 |      1 | 4.622e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3849248.551236489 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15046.900552846098, dt = 49.41535149480406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (2.2%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 932.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.9%)
   LB compute        : 156.22 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5435715698912724e-22,6.623863815197244e-23,-1.4990338391919337e-22)
    sum a = (-7.655440901677321e-26,-3.917009050819395e-26,-6.793088900900891e-26)
    sum e = 7.857945914140874e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 49.41579502497124 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1039e+04 | 2592 |      1 | 5.078e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3502950.5982859107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15096.315904340903, dt = 49.41579502497124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (2.5%)
   patch tree reduce : 1.83 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 168.52 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6452439487463861e-22,6.585868056112984e-23,-1.569515615000442e-22)
    sum a = (-2.6828205239645406e-26,2.150507091292692e-26,-2.6447529295029456e-26)
    sum e = 7.858038276035413e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 49.416277826812895 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5149e+04 | 2592 |      1 | 4.700e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3785038.008279495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15145.731699365875, dt = 49.416277826812895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (3.2%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 141.49 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6365145020770078e-22,6.841799104863597e-23,-1.5723353335527723e-22)
    sum a = (4.337644398559491e-26,-1.3048684384410957e-25,1.8737431409672577e-26)
    sum e = 7.858133060898993e-16
    sum de = -5.777789833161708e-32
Info: cfl dt = 49.41679964694388 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4933e+04 | 2592 |      1 | 4.718e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3770281.373640376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15195.147977192688, dt = 7.64819343203817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (3.0%)
   patch tree reduce : 1.11 us    (0.7%)
   gen split merge   : 852.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 136.49 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.64010898011734e-22,6.366669082760576e-23,-1.5597378956950676e-22)
    sum a = (1.2926431038597374e-25,-9.222805238546395e-26,-8.841490733986338e-27)
    sum e = 7.857133091897717e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 49.41690013554561 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5443e+04 | 2592 |      1 | 4.675e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 588939.73775419 (tsim/hr)                               [sph::Model][rank=0]
Info: iteration since start : 348                                                     [SPH][rank=0]
Info: time since start : 33.437794456 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000797515 s
sph::RenderFieldGetter compute custom field took :  0.0006822820000000001 s
rho_t_ampl=0.000726831, rho_t_phi=3.14159 rad
eps_t_ampl=-8.22783e-08, eps_t_phi=6.28319 rad
vx_t_ampl=8.44662e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15556.35s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 15202.796170624726, dt = 49.41690013554561 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.13 us   (5.5%)
   patch tree reduce : 2.05 us    (0.9%)
   gen split merge   : 772.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 192.73 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5633411991131e-22,5.925733739448048e-23,-1.5651617309976726e-22)
    sum a = (-5.485991875172351e-26,1.9643051257868807e-26,8.820761865955084e-26)
    sum e = 7.858207544918076e-16
    sum de = -1.4637067577342992e-32
Info: cfl dt = 49.41745065775109 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4655e+04 | 2592 |      1 | 4.742e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3751204.1221461394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15252.213070760272, dt = 49.41745065775109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (3.0%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 136.44 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 702.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6606488546335245e-22,6.299172327148309e-23,-1.4975924438343958e-22)
    sum a = (-1.2315901321227872e-25,3.012813226975662e-26,5.675898305692396e-26)
    sum e = 7.858325299568919e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 49.418055503629326 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5679e+04 | 2592 |      1 | 4.655e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3821522.8569497354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15301.630521418023, dt = 49.418055503629326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (3.3%)
   patch tree reduce : 1.63 us    (1.1%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 133.59 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.74024086838374e-22,6.473921728305536e-23,-1.4773138150750512e-22)
    sum a = (2.4446261783789038e-26,1.1203777602310263e-26,-4.2923174996273314e-26)
    sum e = 7.858426595502744e-16
    sum de = 2.465190328815662e-32
Info: cfl dt = 49.41869853789556 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5873e+04 | 2592 |      1 | 4.639e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3834943.2452556104 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15351.048576921652, dt = 49.41869853789556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (3.1%)
   patch tree reduce : 1.56 us    (1.0%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (1.0%)
   LB compute        : 136.90 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6806752322868046e-22,6.48261206095606e-23,-1.5231563816259502e-22)
    sum a = (-6.907636021983467e-26,-7.446553177414819e-26,9.420042813984357e-26)
    sum e = 7.858529408706763e-16
    sum de = -3.0814879110195774e-32
Info: cfl dt = 49.41937933000553 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6278e+04 | 2592 |      1 | 4.606e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3862723.6791754058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15400.467275459547, dt = 49.41937933000553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.9%)
   patch tree reduce : 1.95 us    (1.2%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 145.53 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7073770691578445e-22,5.902751746062387e-23,-1.442720764684164e-22)
    sum a = (-3.7865379021413546e-25,-7.052594714904528e-26,4.860742416589054e-26)
    sum e = 7.858633640055611e-16
    sum de = -2.0800043399382147e-32
Info: cfl dt = 49.420097524895006 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6122e+04 | 2592 |      1 | 4.619e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3852093.063279116 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15449.886654789552, dt = 49.420097524895006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (2.4%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 148.24 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.002637765327998e-22,5.563833787309736e-23,-1.4299648180478063e-22)
    sum a = (-1.3639760420903833e-25,6.880195191072917e-26,-1.8051440263719703e-25)
    sum e = 7.858739086909823e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.420852750502696 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6653e+04 | 2592 |      1 | 4.575e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3888615.1305591557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15499.306752314447, dt = 49.420852750502696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (2.9%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 151.66 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9957055576787858e-22,6.248364219580443e-23,-1.5757926902970763e-22)
    sum a = (7.426648964470066e-26,-3.514071778016521e-26,-6.314685520074766e-26)
    sum e = 7.858845542040055e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 49.42164461620741 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5867e+04 | 2592 |      1 | 4.640e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3834686.7524973834 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15548.72760506495, dt = 7.621964876629136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (3.2%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 712.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 137.98 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.931518449815709e-22,5.964581983558616e-23,-1.5516037000235572e-22)
    sum a = (1.136688490223668e-25,-1.6458560827496853e-25,-1.5434176628306845e-25)
    sum e = 7.857277672469882e-16
    sum de = 9.321500930834222e-32
Info: cfl dt = 49.42178436379889 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7487e+04 | 2592 |      1 | 4.509e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 608556.7375862851 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 356                                                     [SPH][rank=0]
Info: time since start : 34.001117892 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000853908 s
sph::RenderFieldGetter compute custom field took :  0.000717905 s
rho_t_ampl=0.0009003, rho_t_phi=3.14159 rad
eps_t_ampl=-1.19713e-07, eps_t_phi=6.28319 rad
vx_t_ampl=7.49613e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15909.90s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 15556.34956994158, dt = 49.42178436379889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.44 us   (4.3%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 217.81 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.869898826267155e-22,5.101686610695583e-23,-1.6313575769852666e-22)
    sum a = (-4.550765655136114e-27,1.2463568103645417e-25,-1.5481773643234946e-25)
    sum e = 7.858927997586715e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 49.42260392335897 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5092e+04 | 2592 |      1 | 4.705e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3781587.089321062 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15605.771354305378, dt = 49.42260392335897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.3%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.6%)
   LB compute        : 159.62 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9109785752995243e-22,6.432541102205058e-23,-1.7079901501354825e-22)
    sum a = (-1.0298771310452665e-25,9.812960622552222e-26,-1.5132027656628522e-25)
    sum e = 7.859055859753523e-16
    sum de = -2.5422275265911513e-32
Info: cfl dt = 49.423473183983965 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6121e+04 | 2592 |      1 | 5.620e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3165867.284069346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15655.193958228736, dt = 49.423473183983965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (2.1%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 165.19 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9885166015981213e-22,6.851843384320608e-23,-1.7819136185777916e-22)
    sum a = (1.426408033722829e-25,2.7401331001184665e-25,-7.67791401159928e-26)
    sum e = 7.859164289679108e-16
    sum de = -3.4666738998970245e-32
Info: cfl dt = 49.42437785871935 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6518e+04 | 2592 |      1 | 4.586e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3879613.009290541 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15704.61743141272, dt = 49.42437785871935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.4%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 153.91 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8403727566501397e-22,8.64090356285202e-23,-1.8014408216131337e-22)
    sum a = (-2.665770823438411e-25,1.085610396416886e-25,-8.146279751696883e-26)
    sum e = 7.859272679988331e-16
    sum de = -1.4637067577342992e-32
Info: cfl dt = 49.425317358594384 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6540e+04 | 2592 |      1 | 4.584e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3881204.553013447 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15754.041809271439, dt = 49.425317358594384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.8%)
   patch tree reduce : 1.25 us    (0.8%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 136.11 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0881349930016166e-22,8.76860080517493e-23,-1.8428615020809572e-22)
    sum a = (-3.156701906234913e-25,5.155066276954937e-26,1.427733884166649e-25)
    sum e = 7.859380985286769e-16
    sum de = 2.1570415377137042e-32
Info: cfl dt = 49.42629119952653 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7983e+04 | 2592 |      1 | 4.470e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980305.9335468733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15803.467126630034, dt = 49.42629119952653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (2.6%)
   patch tree reduce : 1.32 us    (0.9%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 134.47 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 570.00 ns  (54.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2542512281512595e-22,8.882477760836072e-23,-1.7168791881013906e-22)
    sum a = (1.0243610514632833e-25,1.1234972050940618e-25,-8.137037972366227e-26)
    sum e = 7.859488994825758e-16
    sum de = -2.69630192214213e-32
Info: cfl dt = 49.42729888191652 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1424e+04 | 2592 |      1 | 6.257e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2843649.0973754805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15852.89341782956, dt = 49.42729888191652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.4%)
   patch tree reduce : 12.49 us   (7.2%)
   gen split merge   : 1.09 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.9%)
   LB compute        : 143.96 us  (83.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0955806975137334e-22,9.588024456314134e-23,-1.812491344661981e-22)
    sum a = (-3.3826104382061325e-25,2.594966770679049e-28,3.1356877871479335e-26)
    sum e = 7.859596496138873e-16
    sum de = 1.0785207688568521e-32
Info: cfl dt = 49.42833988943053 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3325e+04 | 2592 |      1 | 4.861e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3660723.5525981258 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15902.320716711476, dt = 7.582252546959353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.7%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 147.83 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2357653410866935e-22,9.311282743686037e-23,-1.782254767724443e-22)
    sum a = (5.0158714562533307e-26,2.919127042242956e-25,5.222411351209116e-26)
    sum e = 7.857427397388825e-16
    sum de = -3.928897086549961e-32
Info: cfl dt = 49.428514643459 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9184e+04 | 2592 |      1 | 4.380e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 623257.4228279328 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 364                                                     [SPH][rank=0]
Info: time since start : 34.583992209 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008483910000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007368030000000001 s
rho_t_ampl=0.00105102, rho_t_phi=3.14159 rad
eps_t_ampl=-1.61542e-07, eps_t_phi=6.28319 rad
vx_t_ampl=6.35617e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16263.46s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 15909.902969258435, dt = 49.428514643459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.69 us   (5.4%)
   patch tree reduce : 2.15 us    (1.0%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 188.40 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1995638122519178e-22,1.0864746148653147e-22,-1.755650060876939e-22)
    sum a = (-1.2372315771498156e-25,-1.156170574208934e-25,-9.451688299235936e-26)
    sum e = 7.859678722681638e-16
    sum de = -4.3140830754274083e-32
Info: cfl dt = 49.42958162515555 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6283e+04 | 2592 |      1 | 4.605e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3863858.9720849236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15959.331483901895, dt = 49.42958162515555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.8%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 133.62 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2891690148287732e-22,9.286159508499005e-23,-1.8386353081776941e-22)
    sum a = (8.788117697659547e-26,-1.774078243902845e-25,-1.0376276619911303e-25)
    sum e = 7.859803809887844e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 49.43069241827449 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6698e+04 | 2592 |      1 | 4.572e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3892425.242647786 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16008.761065527051, dt = 49.43069241827449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (1.1%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 379.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2057257746067734e-22,8.256362611338568e-23,-1.8922110626755876e-22)
    sum a = (-1.2285813614417056e-26,-7.785487962560795e-27,-9.467685962363788e-26)
    sum e = 7.859908572419364e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 49.43183495077302 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6364e+04 | 2592 |      1 | 4.599e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3869616.039597537 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16058.191757945326, dt = 49.43183495077302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.6%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 158.29 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2226711710826254e-22,8.63717770182528e-23,-1.9367659583950528e-22)
    sum a = (-1.4492245447210322e-26,2.3544561026126964e-26,-1.2436538940793079e-25)
    sum e = 7.860011719193187e-16
    sum de = -2.850376317693109e-32
Info: cfl dt = 49.433008492267696 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5847e+04 | 2592 |      1 | 4.641e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3834217.1337298714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16107.6235928961, dt = 49.433008492267696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.5%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 157.83 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.227035894417315e-22,8.830997694482763e-23,-2.0055813044235727e-22)
    sum a = (1.0894257174416757e-25,-3.674191854447721e-26,4.333866835062047e-26)
    sum e = 7.86011328493963e-16
    sum de = 3.8518598887744717e-32
Info: cfl dt = 49.434212443673786 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5378e+04 | 2592 |      1 | 4.681e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3802099.6798075982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16157.056601388367, dt = 49.434212443673786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.4%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 145.91 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 742.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1510383587074317e-22,8.500278635836062e-23,-1.9427065944840822e-22)
    sum a = (2.3008320129122063e-25,5.540824566116479e-26,2.678833451912832e-26)
    sum e = 7.860213071787881e-16
    sum de = -2.9274135154685985e-32
Info: cfl dt = 49.43544619227178 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6534e+04 | 2592 |      1 | 4.585e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3881572.2905603484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16206.49081383204, dt = 49.43544619227178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (2.2%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 150.65 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0159886837635182e-22,9.001996161524242e-23,-1.9335544253802354e-22)
    sum a = (1.636645885063415e-25,1.1875119354702018e-25,-1.3344434752218753e-25)
    sum e = 7.860310883225522e-16
    sum de = -3.158525108795067e-32
Info: cfl dt = 49.436709110862466 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7811e+04 | 2592 |      1 | 4.484e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3969341.521661269 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16255.926260024313, dt = 7.530108550976365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (2.2%)
   patch tree reduce : 1.31 us    (0.8%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 151.97 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 682.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0277991116103244e-22,9.24801080357179e-23,-1.9832088002602232e-22)
    sum a = (1.6006660023354792e-25,3.778142334993492e-26,1.123784779531222e-25)
    sum e = 7.857567351401617e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 49.43691360252231 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9182e+04 | 2592 |      1 | 4.380e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 618954.380000703 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 372                                                     [SPH][rank=0]
Info: time since start : 35.133151097 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008712250000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007016710000000001 s
rho_t_ampl=0.00117519, rho_t_phi=3.14159 rad
eps_t_ampl=-2.06708e-07, eps_t_phi=6.28319 rad
vx_t_ampl=5.05557e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16617.01s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 16263.45636857529, dt = 49.43691360252231 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.29 us   (5.1%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.6%)
   LB compute        : 194.38 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9250997390294013e-22,9.404283845438274e-23,-1.918396986405998e-22)
    sum a = (3.2880848926421486e-25,2.5417682378994343e-25,1.535765927372625e-26)
    sum e = 7.860384719866612e-16
    sum de = -2.1570415377137042e-32
Info: cfl dt = 49.438200120543875 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7331e+04 | 2592 |      1 | 4.521e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3936476.056885973 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16312.89328217781, dt = 49.438200120543875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (1.6%)
   patch tree reduce : 1.05 us    (0.6%)
   gen split merge   : 560.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.6%)
   LB compute        : 150.07 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.739598997305109e-22,1.1195786142839163e-22,-1.9347864852341018e-22)
    sum a = (3.497695916757509e-26,-3.6511265713945066e-26,3.5979881972142056e-26)
    sum e = 7.860494417362703e-16
    sum de = 1.6948183510607676e-32
Info: cfl dt = 49.43952346232042 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8290e+04 | 2592 |      1 | 4.447e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4002467.7303336784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16362.331482298354, dt = 49.43952346232042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (2.2%)
   patch tree reduce : 661.00 ns  (0.5%)
   gen split merge   : 702.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.7%)
   LB compute        : 133.48 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 2.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.782989482220549e-22,1.0296670185593709e-22,-1.9119005751810853e-22)
    sum a = (3.144165361730406e-26,1.5221098597516504e-25,-3.46222629192139e-26)
    sum e = 7.860585070231744e-16
    sum de = 0
Info: cfl dt = 49.44087407427046 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7965e+04 | 2592 |      1 | 4.472e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980215.9210205753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16411.771005760675, dt = 49.44087407427046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (2.4%)
   patch tree reduce : 1.44 us    (1.0%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 135.11 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7810638689846569e-22,1.15157538609188e-22,-1.9464708065869275e-22)
    sum a = (-1.795483903935521e-25,-7.658016769805983e-27,-1.9534979041307958e-26)
    sum e = 7.860672669180259e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 49.44225110525109 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7492e+04 | 2592 |      1 | 4.508e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3947829.320427117 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16461.211879834944, dt = 49.44225110525109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (1.9%)
   patch tree reduce : 1.78 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 153.86 us  (84.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9147014275555829e-22,1.108268018466505e-22,-1.9523996974662122e-22)
    sum a = (-8.346831331100893e-26,-9.780174620420318e-26,9.020046188472893e-26)
    sum e = 7.860757347530872e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.443653858079 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6769e+04 | 2592 |      1 | 4.566e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3898348.036318356 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16510.654130940195, dt = 49.443653858079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (2.0%)
   patch tree reduce : 1.09 us    (0.7%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 149.20 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9220187578519737e-22,1.0376286018778483e-22,-1.8806734571864364e-22)
    sum a = (5.405757990343504e-26,-4.49964005957867e-26,-7.118373578526474e-27)
    sum e = 7.86083894005491e-16
    sum de = -1.925929944387236e-33
Info: cfl dt = 49.44502616711548 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6745e+04 | 2592 |      1 | 4.568e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3896791.901397425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16560.097784798272, dt = 49.44502616711548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (2.4%)
   patch tree reduce : 1.19 us    (0.8%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (1.1%)
   LB compute        : 135.59 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8609126311663244e-22,1.028437935736149e-22,-1.9082521329376644e-22)
    sum a = (2.9895897679898317e-25,8.9178660361935e-26,4.0243442615558305e-26)
    sum e = 7.860917278414314e-16
    sum de = 3.42815530100928e-32
Info: cfl dt = 49.446420766517676 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7459e+04 | 2592 |      1 | 4.511e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3945911.7233590125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16609.542810965388, dt = 7.4669569267571205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.8%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.6%)
   LB compute        : 132.46 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7998065044806752e-22,1.068262400567282e-22,-1.8935381412066584e-22)
    sum a = (3.054779799413269e-25,-6.889771446064545e-26,9.762056854393966e-26)
    sum e = 7.857683657707586e-16
    sum de = 2.965932114356343e-32
Info: cfl dt = 49.44664009193667 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9475e+04 | 2592 |      1 | 4.358e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 616802.3870500589 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 380                                                     [SPH][rank=0]
Info: time since start : 35.847139993 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008022210000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006440650000000001 s
rho_t_ampl=0.00126966, rho_t_phi=3.14159 rad
eps_t_ampl=-2.54069e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.62723e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16970.56s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 16617.009767892145, dt = 49.44664009193667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.91 us   (4.9%)
   patch tree reduce : 2.34 us    (1.0%)
   gen split merge   : 1.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.6%)
   LB compute        : 197.65 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6430615870790416e-22,1.0282980905822013e-22,-1.8431258873835013e-22)
    sum a = (-2.869740402526743e-25,-1.9866686561731044e-25,1.1175040069540214e-25)
    sum e = 7.860975422968668e-16
    sum de = 0
Info: cfl dt = 49.4480556336116 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6333e+04 | 2592 |      1 | 4.601e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3868733.702997723 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16666.456407984082, dt = 49.4480556336116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.9%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 136.50 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9261267327552106e-22,8.979765107154399e-23,-1.7843741234520057e-22)
    sum a = (2.878139887344763e-25,3.452226457490185e-26,1.2208117375722604e-25)
    sum e = 7.861058635061684e-16
    sum de = 1.1555579666323415e-33
Info: cfl dt = 49.449500099456046 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7150e+04 | 2592 |      1 | 4.535e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3924937.227220286 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16715.904463617695, dt = 49.449500099456046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (3.4%)
   patch tree reduce : 2.01 us    (1.3%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 131.90 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.642676464431863e-22,9.727000200900523e-23,-1.7214514101081758e-22)
    sum a = (9.910138430812942e-26,-3.0917077583193584e-26,1.0550715500362126e-25)
    sum e = 7.861126129970155e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 49.45096686917994 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.8365e+04 | 2592 |      1 | 5.359e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3321698.569806816 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16765.353963717153, dt = 49.45096686917994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.7%)
   patch tree reduce : 1.72 us    (1.1%)
   gen split merge   : 832.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 145.50 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6410075996274231e-22,9.412305777037569e-23,-1.6733749865526238e-22)
    sum a = (-1.2139136043714321e-25,-1.0023138729422904e-25,-6.562971967343597e-26)
    sum e = 7.861189414440036e-16
    sum de = -2.04148574105047e-32
Info: cfl dt = 49.452453978030995 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6242e+04 | 2592 |      1 | 5.605e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3175995.9899427653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16814.80493058633, dt = 49.452453978030995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (1.6%)
   patch tree reduce : 1.25 us    (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 243.74 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7532066641720813e-22,8.745255251998637e-23,-1.7481449130689116e-22)
    sum a = (1.2669431876254976e-25,-3.9657497646683636e-26,-1.277896883738384e-25)
    sum e = 7.86124872897752e-16
    sum de = 5.007417855406813e-33
Info: cfl dt = 49.45395783203035 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7085e+04 | 2592 |      1 | 4.541e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3920831.895746011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16864.257384564364, dt = 49.45395783203035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (2.9%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 144.37 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.632470714281634e-22,8.698918929855528e-23,-1.826711786628095e-22)
    sum a = (6.813611938199663e-26,-6.804890225011176e-26,2.162369366557183e-25)
    sum e = 7.861303957211234e-16
    sum de = 3.4666738998970245e-33
Info: cfl dt = 49.45548145971609 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7086e+04 | 2592 |      1 | 4.540e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3921041.0245521665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16913.711342396393, dt = 49.45548145971609 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.8%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 141.26 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.60840054883298e-22,8.292189548223548e-23,-1.6347033774746472e-22)
    sum a = (-3.628201345049429e-25,-9.562298291689837e-27,7.971521716931346e-26)
    sum e = 7.86135499061801e-16
    sum de = 1.0592614694129797e-32
Info: cfl dt = 49.45702417664583 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4618e+04 | 2592 |      1 | 4.746e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3751643.5486348383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16963.16682385611, dt = 7.396343352887925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (3.2%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 132.03 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7375450098534906e-22,8.429711680474642e-23,-1.662566103143053e-22)
    sum a = (5.870863791460721e-26,1.0278977281981095e-25,3.9500588064195576e-26)
    sum e = 7.8577649331134005e-16
    sum de = -1.2711137632955757e-32
Info: cfl dt = 49.45726027590285 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8023e+04 | 2592 |      1 | 4.467e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 596054.506996213 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 388                                                     [SPH][rank=0]
Info: time since start : 36.419790994 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008195570000000001 s
sph::RenderFieldGetter compute custom field took :  0.000803132 s
rho_t_ampl=0.00133206, rho_t_phi=3.14159 rad
eps_t_ampl=-3.02428e-07, eps_t_phi=6.28319 rad
vx_t_ampl=2.10728e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17324.12s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 16970.563167209, dt = 49.45726027590285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.42 us   (4.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 235.43 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6998029904300016e-22,8.979669829416165e-23,-1.6445174005168036e-22)
    sum a = (-4.260168553521636e-25,-2.903370662577623e-26,1.1569489522481305e-25)
    sum e = 7.861391763071383e-16
    sum de = 7.703719777548943e-33
Info: cfl dt = 49.45882061287956 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1330e+04 | 2592 |      1 | 6.272e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2838965.3828814193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17020.020427484902, dt = 49.45882061287956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (2.8%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 158.62 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0303665959248473e-22,8.510052125931775e-23,-1.5684542614253422e-22)
    sum a = (-6.744660943424873e-26,-3.8701635099091936e-26,-4.9801950386026287e-26)
    sum e = 7.861440047297946e-16
    sum de = 1.3481509610710651e-33
Info: cfl dt = 49.46040155560909 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1659e+04 | 2592 |      1 | 6.222e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2861639.6049199724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17069.47924809778, dt = 49.46040155560909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (2.5%)
   patch tree reduce : 1.78 us    (0.9%)
   gen split merge   : 811.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.8%)
   LB compute        : 178.13 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9772196706142196e-22,8.294719422904558e-23,-1.6340129000643933e-22)
    sum a = (-3.2394430999646605e-26,-9.94959426638826e-26,-6.241919719697751e-26)
    sum e = 7.86147766095254e-16
    sum de = -7.125940794232773e-33
Info: cfl dt = 49.4619993164471 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.2965e+04 | 2592 |      1 | 6.033e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2951504.256075041 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17118.939649653392, dt = 49.4619993164471 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (2.0%)
   patch tree reduce : 1.75 us    (0.9%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.8%)
   LB compute        : 181.82 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9860774914993242e-22,7.652261633990979e-23,-1.6680069534241017e-22)
    sum a = (1.3306288337083943e-25,-1.6266950028629623e-26,-1.7782657818389964e-25)
    sum e = 7.861510306442991e-16
    sum de = 1.925929944387236e-33
Info: cfl dt = 49.463612911938625 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4737e+04 | 2592 |      1 | 5.794e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3073324.670540619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17168.40164896984, dt = 49.463612911938625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (2.7%)
   patch tree reduce : 1.55 us    (0.8%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.8%)
   LB compute        : 165.56 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8754189175433798e-22,7.777677225214069e-23,-1.784507802708924e-22)
    sum a = (1.1261577928398817e-25,-1.3991469259307624e-27,2.436034183915869e-26)
    sum e = 7.861538329762652e-16
    sum de = -4.718528363748728e-33
Info: cfl dt = 49.46524153797394 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0618e+04 | 2592 |      1 | 6.381e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2790446.944480045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17217.86526188178, dt = 49.46524153797394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (2.8%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 154.13 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8269897446606883e-22,7.807401372234255e-23,-1.722453423039333e-22)
    sum a = (-4.741321131604623e-26,1.931881997853329e-25,2.228196913547278e-25)
    sum e = 7.861561675945017e-16
    sum de = 2.8888949165808538e-33
Info: cfl dt = 49.46683621582688 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1236e+04 | 2592 |      1 | 6.286e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832987.6479214965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17267.330503419755, dt = 49.46683621582688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.6%)
   patch tree reduce : 1.62 us    (0.9%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.9%)
   LB compute        : 155.07 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8889784440794548e-22,9.244407800681195e-23,-1.5631473729638631e-22)
    sum a = (-2.0399465217734115e-25,-1.441085584968497e-26,1.6350614395184207e-26)
    sum e = 7.861580291303784e-16
    sum de = 5.103714352626175e-33
Info: cfl dt = 49.46838818972776 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1476e+04 | 2592 |      1 | 6.249e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2849545.6324330554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17316.79733963558, dt = 7.3192268902712385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.7%)
   patch tree reduce : 1.23 us    (0.7%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 150.27 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9408737207867523e-22,8.720422864644109e-23,-1.6130174944664714e-22)
    sum a = (2.833259058018627e-26,-6.520491857003655e-26,5.6860060707817e-26)
    sum e = 7.857803335928975e-16
    sum de = -1.6370404527291505e-33
Info: cfl dt = 49.46861980381248 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.1632e+04 | 2592 |      1 | 6.226e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 423210.6815989972 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 396                                                     [SPH][rank=0]
Info: time since start : 37.101703989 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000851975 s
sph::RenderFieldGetter compute custom field took :  0.000665206 s
rho_t_ampl=0.0013608, rho_t_phi=3.14159 rad
eps_t_ampl=-3.5056e-07, eps_t_phi=6.28319 rad
vx_t_ampl=5.34153e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17677.67s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 17324.116566525852, dt = 49.46861980381248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.56 us   (4.9%)
   patch tree reduce : 2.47 us    (1.0%)
   gen split merge   : 832.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 209.96 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9199326768464237e-22,8.379200689011532e-23,-1.5834071180707217e-22)
    sum a = (-5.789376252181425e-26,-1.233536724482374e-25,1.96350264046618e-26)
    sum e = 7.861592157166254e-16
    sum de = -1.1555579666323415e-33
Info: cfl dt = 49.47018588259629 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7650e+04 | 2592 |      1 | 4.496e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3960926.1718722964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17373.585186329663, dt = 49.47018588259629 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (2.3%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 154.99 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9704318839576992e-22,7.625177683243441e-23,-1.582900989355912e-22)
    sum a = (3.632087673845826e-25,-1.1796761054461152e-25,4.99545186740845e-26)
    sum e = 7.861600541315357e-16
    sum de = 6.018531076210112e-35
Info: cfl dt = 49.47174109935606 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8736e+04 | 2592 |      1 | 4.413e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4035652.55306992 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 17423.05537221226, dt = 49.47174109935606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (1.8%)
   patch tree reduce : 802.00 ns  (0.5%)
   gen split merge   : 530.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.5%)
   LB compute        : 151.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6859786920739913e-22,7.054850156790994e-23,-1.5506880646178052e-22)
    sum a = (-8.136217383425172e-26,1.559009905257866e-25,1.90147015298471e-26)
    sum e = 7.86160451414617e-16
    sum de = -8.907425992790966e-34
Info: cfl dt = 49.47101131801935 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8433e+04 | 2592 |      1 | 4.436e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4014973.629249803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17472.527113311615, dt = 49.47101131801935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (2.2%)
   patch tree reduce : 781.00 ns  (0.5%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 142.85 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.70 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8346280104963945e-22,8.503608342056459e-23,-1.548934532589044e-22)
    sum a = (4.1242724110927785e-25,1.7385278357659425e-25,8.413300364294567e-27)
    sum e = 7.861602872978818e-16
    sum de = -2.8888949165808538e-34
Info: cfl dt = 49.46943499984607 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3624e+04 | 2592 |      1 | 5.942e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2997388.2489990466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17521.998124629634, dt = 49.46943499984607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (2.7%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 1.20 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 148.65 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5100979931406779e-22,9.40805483802523e-23,-1.5473948306192448e-22)
    sum a = (-9.145409216038003e-26,1.18296401012593e-25,1.4173216945581354e-26)
    sum e = 7.861596281538811e-16
    sum de = 2.6963019221421302e-33
Info: cfl dt = 49.46787170830195 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2594e+04 | 2592 |      1 | 6.085e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2926527.851917397 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17571.46755962948, dt = 49.46787170830195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.8%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 141.60 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6808998871643254e-22,9.855815076166011e-23,-1.5389589427491753e-22)
    sum a = (1.5542807876688027e-25,3.986601564082501e-26,1.3757289765059322e-25)
    sum e = 7.861584895009501e-16
    sum de = 7.029644297013411e-33
Info: cfl dt = 49.466223229636235 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3340e+04 | 2592 |      1 | 5.981e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2977711.004132945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17620.93543133778, dt = 49.466223229636235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (3.0%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (1.0%)
   LB compute        : 144.46 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5442455345238346e-22,9.859054519265975e-23,-1.4403852282239535e-22)
    sum a = (3.4241064005160514e-25,1.779229490451396e-25,-9.483361459594848e-26)
    sum e = 7.861568721833095e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.46458565170913 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3236e+04 | 2592 |      1 | 5.995e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2970414.0840172083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17670.401654567417, dt = 7.268311275289307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (3.1%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 142.21 us  (82.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4720671317318047e-22,1.0329711502289789e-22,-1.504759392600377e-22)
    sum a = (-2.8834052360366557e-25,1.5772001375086443e-25,6.889791709349426e-26)
    sum e = 7.85779609241381e-16
    sum de = -4.8148248609680896e-33
Info: cfl dt = 49.46434837122727 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2592e+04 | 2592 |      1 | 6.086e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 429962.0008638293 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 404                                                     [SPH][rank=0]
Info: time since start : 37.712095456 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000920949 s
sph::RenderFieldGetter compute custom field took :  0.000752466 s
rho_t_ampl=0.00135516, rho_t_phi=3.14159 rad
eps_t_ampl=-3.97249e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.05236e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18031.22s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 17677.669965842706, dt = 49.46434837122727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.24 us   (4.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 257.57 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6366428762927339e-22,1.1102689763348692e-22,-1.4647292281793756e-22)
    sum a = (4.97951547719026e-26,1.08965294231082e-25,5.681801989376846e-26)
    sum e = 7.861554107673507e-16
    sum de = 4.8148248609680896e-33
Info: cfl dt = 49.462726232868995 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4825e+04 | 2592 |      1 | 4.728e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3766475.807220545 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17727.134314213934, dt = 49.462726232868995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (2.1%)
   patch tree reduce : 1.21 us    (0.7%)
   gen split merge   : 621.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 166.29 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5221972629728679e-22,1.152097909266828e-22,-1.439613107765135e-22)
    sum a = (3.3298315858421574e-25,-2.2164855538353583e-26,3.4768847667371065e-26)
    sum e = 7.861521165265793e-16
    sum de = 8.666684749742561e-33
Info: cfl dt = 49.46112320968621 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6743e+04 | 2592 |      1 | 4.568e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3898115.579847833 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17776.597040446803, dt = 49.46112320968621 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (2.0%)
   patch tree reduce : 1.43 us    (1.0%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.6%)
   LB compute        : 136.06 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2920864812837372e-22,1.1087054185042672e-22,-1.42786910602928e-22)
    sum a = (-2.4750899815248564e-25,-1.575843644216555e-26,3.7455120223562663e-26)
    sum e = 7.861490680114844e-16
    sum de = -4.8148248609680896e-33
Info: cfl dt = 49.459537232336906 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8843e+04 | 2592 |      1 | 4.405e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4042276.938601636 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17826.05816365649, dt = 49.459537232336906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (1.7%)
   patch tree reduce : 1.11 us    (0.7%)
   gen split merge   : 560.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.3%)
   LB compute        : 144.11 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5572434238661077e-22,1.1024887968153723e-22,-1.4086796466076346e-22)
    sum a = (8.883395435893802e-26,-1.1998305595721892e-25,-5.543983328913409e-26)
    sum e = 7.861455186863664e-16
    sum de = -1.5214846560659163e-32
Info: cfl dt = 49.45796926154653 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8511e+04 | 2592 |      1 | 4.430e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4019309.961806601 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17875.517700888828, dt = 49.45796926154653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (1.8%)
   patch tree reduce : 681.00 ns  (0.4%)
   gen split merge   : 481.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.3%)
   LB compute        : 144.49 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 1.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.428869208139954e-22,1.0173797005596133e-22,-1.459071769374225e-22)
    sum a = (-1.2565378556867567e-25,-3.795801233229138e-26,-1.710034544164501e-25)
    sum e = 7.861415197566443e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 49.45642005590752 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6513e+04 | 2592 |      1 | 5.573e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3195077.648164495 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17924.975670150376, dt = 49.45642005590752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (1.4%)
   patch tree reduce : 541.00 ns  (0.3%)
   gen split merge   : 451.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 521.00 ns  (0.3%)
   LB compute        : 148.98 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 1.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5452404346957125e-22,1.0188810771294731e-22,-1.5722216662078223e-22)
    sum a = (1.1959863457299868e-26,-7.186148090579107e-26,9.959512236248389e-26)
    sum e = 7.86137079221502e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 49.45489036401067 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7979e+04 | 2592 |      1 | 4.471e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3982541.2817672985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17974.432090206283, dt = 49.45489036401067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (1.7%)
   patch tree reduce : 1.00 us    (0.6%)
   gen split merge   : 581.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 155.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 682.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5059579246835094e-22,9.749600456506024e-23,-1.4560528232370736e-22)
    sum a = (1.432927036865173e-26,4.4340876436656495e-26,-3.3494874097716067e-26)
    sum e = 7.861322060647059e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 49.45338092357618 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7483e+04 | 2592 |      1 | 4.509e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3948374.011819033 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18023.886980570293, dt = 7.336384589267254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (2.5%)
   patch tree reduce : 912.00 ns  (0.6%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 136.06 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 712.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.513146880764174e-22,1.0069523043025445e-22,-1.4914198919358798e-22)
    sum a = (-7.895515728938635e-26,1.5866368255009043e-25,-2.108609298599854e-26)
    sum e = 7.857746244694116e-16
    sum de = 1.3096323621833204e-32
Info: cfl dt = 49.45316366306151 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1023e+04 | 2592 |      1 | 4.248e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 621788.6032719437 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 412                                                     [SPH][rank=0]
Info: time since start : 38.266455692 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008010490000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007233630000000001 s
rho_t_ampl=0.00131528, rho_t_phi=3.14159 rad
eps_t_ampl=-4.41313e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-2.61214e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18384.78s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 18031.22336515956, dt = 49.45316366306151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.06 us   (5.6%)
   patch tree reduce : 1.99 us    (0.9%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.6%)
   LB compute        : 187.25 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.542287827734011e-22,1.0896252992301874e-22,-1.5013924540578229e-22)
    sum a = (1.1351841048831269e-25,-1.4023579463337335e-25,-3.114721270110743e-26)
    sum e = 7.861283082087416e-16
    sum de = 1.0400021699691074e-32
Info: cfl dt = 49.45167308138146 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5072e+04 | 2592 |      1 | 5.751e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3095776.9394747973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18080.67652882262, dt = 49.45167308138146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (2.9%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 152.38 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4426694363305157e-22,9.46343627702834e-23,-1.5192830428561583e-22)
    sum a = (-5.365641047929081e-27,-1.1652331247011373e-25,-1.450743920744355e-26)
    sum e = 7.861212630841509e-16
    sum de = -2.850376317693109e-32
Info: cfl dt = 49.450209777447924 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5686e+04 | 2592 |      1 | 5.673e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3137873.6679839976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18130.128201904, dt = 49.450209777447924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.6%)
   patch tree reduce : 1.75 us    (1.0%)
   gen split merge   : 932.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 154.85 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.47656022928222e-22,8.945907661411076e-23,-1.5223426787828393e-22)
    sum a = (1.9811501280472729e-25,-2.1233850607912224e-25,-4.445271643893623e-26)
    sum e = 7.861151376034037e-16
    sum de = 2.6963019221421302e-33
Info: cfl dt = 49.44876878788471 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6207e+04 | 2592 |      1 | 5.610e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3173548.3283850322 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18179.57841168145, dt = 49.44876878788471 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.4%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 153.53 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3240516609995495e-22,7.659317201238115e-23,-1.551728000959337e-22)
    sum a = (-1.640030752079632e-25,8.086918401578737e-26,-2.229542484878783e-25)
    sum e = 7.861085837355432e-16
    sum de = 1.502225356622044e-32
Info: cfl dt = 49.447350988047425 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5879e+04 | 2592 |      1 | 5.650e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3150913.869838864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18229.027180469337, dt = 49.447350988047425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.6%)
   patch tree reduce : 1.42 us    (0.8%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 152.04 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4936339999737986e-22,8.784025769533276e-23,-1.706106375684747e-22)
    sum a = (-3.014286760663711e-25,1.320250925460757e-25,2.0516493761207064e-25)
    sum e = 7.861016566688499e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 49.44595705395755 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5581e+04 | 2592 |      1 | 4.663e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3817142.9986040955 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18278.474531457385, dt = 49.44595705395755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.2%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.7%)
   LB compute        : 173.77 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6733579019904138e-22,9.563347522111461e-23,-1.4988138104443856e-22)
    sum a = (-1.6103191416039499e-25,3.8630529385730433e-26,1.1501713026415395e-25)
    sum e = 7.860943700995383e-16
    sum de = 8.859277744181285e-33
Info: cfl dt = 49.44458764974207 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6740e+04 | 2592 |      1 | 4.568e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3896602.682195784 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18327.920488511343, dt = 49.44458764974207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (2.1%)
   patch tree reduce : 1.42 us    (0.7%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.8%)
   LB compute        : 173.54 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7217549813191738e-22,9.523260667403849e-23,-1.4642312877117883e-22)
    sum a = (1.9469253615499682e-26,-1.3496471634887473e-25,-5.8895831332800714e-27)
    sum e = 7.860867386098487e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 49.44319481854468 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7634e+04 | 2592 |      1 | 4.497e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3957873.484740784 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18377.365076161084, dt = 7.411688315332867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (2.1%)
   patch tree reduce : 1.08 us    (0.6%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.9%)
   LB compute        : 159.10 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.67348627620614e-22,8.994338840140889e-23,-1.4945587181969363e-22)
    sum a = (-1.1571230577660145e-25,-3.6407986134413795e-26,1.7577121440858717e-25)
    sum e = 7.857656468738435e-16
    sum de = -1.925929944387236e-33
Info: cfl dt = 49.44299510282784 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9016e+04 | 2592 |      1 | 4.392e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 607515.0345460456 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 420                                                     [SPH][rank=0]
Info: time since start : 38.85570364 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006671390000000001 s
sph::RenderFieldGetter compute custom field took :  0.000564065 s
rho_t_ampl=0.00124219, rho_t_phi=3.14159 rad
eps_t_ampl=-4.81642e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.10574e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18738.33s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 18384.776764476417, dt = 49.44299510282784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.07 us   (6.1%)
   patch tree reduce : 2.07 us    (1.0%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 185.03 us  (86.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7533350383878076e-22,8.850710157061651e-23,-1.400920099212063e-22)
    sum a = (-1.579353876677817e-25,1.4072618899535825e-25,7.295092508544713e-26)
    sum e = 7.860807962091656e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 49.44161738462141 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9212e+04 | 2592 |      1 | 6.610e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2692741.8204121864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18434.219759579246, dt = 49.44161738462141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (3.3%)
   patch tree reduce : 1.58 us    (1.0%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (1.0%)
   LB compute        : 140.56 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.833825671648106e-22,9.98445506663566e-23,-1.3902706972601816e-22)
    sum a = (2.267234073640127e-25,5.504140482177703e-26,4.254994674099158e-26)
    sum e = 7.860707049664873e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 49.44027472410703 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8785e+04 | 2592 |      1 | 6.683e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2663318.214167524 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18483.661376963868, dt = 49.44027472410703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (2.8%)
   patch tree reduce : 1.89 us    (1.0%)
   gen split merge   : 941.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.6%)
   LB compute        : 176.76 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6230352094257616e-22,1.0044901269618592e-22,-1.37674925439349e-22)
    sum a = (-4.634760503316312e-26,5.199742408015335e-26,6.386208203230942e-26)
    sum e = 7.860621266956939e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 49.43895917314254 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9074e+04 | 2592 |      1 | 6.634e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2683115.0820561307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18533.101651687975, dt = 49.43895917314254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (2.6%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.7%)
   LB compute        : 165.11 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7104580503352723e-22,1.0294077628190178e-22,-1.3399081166118311e-22)
    sum a = (-1.939779531182399e-25,-3.174737880223233e-26,1.5769413562117515e-25)
    sum e = 7.860532330584888e-16
    sum de = -1.9259299443872359e-32
Info: cfl dt = 49.43767153140071 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8648e+04 | 2592 |      1 | 6.707e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2653780.9372305525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18582.540610861117, dt = 49.43767153140071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (2.6%)
   patch tree reduce : 1.86 us    (1.0%)
   gen split merge   : 932.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.9%)
   LB compute        : 168.51 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.848075209593709e-22,9.930397486732225e-23,-1.2387530124864743e-22)
    sum a = (-2.46405782236089e-25,-1.3388882618182776e-26,6.635584486983044e-26)
    sum e = 7.860440798818164e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 49.43641240168133 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8838e+04 | 2592 |      1 | 6.674e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2666762.865781351 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18631.978282392516, dt = 49.43641240168133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (2.8%)
   patch tree reduce : 1.74 us    (0.9%)
   gen split merge   : 972.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.6%)
   LB compute        : 171.15 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9890300984610257e-22,9.909035214896545e-23,-1.228526825445971e-22)
    sum a = (6.56413470255997e-26,7.835830024086707e-27,-1.1629273571233485e-25)
    sum e = 7.860346851758977e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 49.43518237317981 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8880e+04 | 2592 |      1 | 6.667e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2669546.43496078 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18681.4146947942, dt = 49.43518237317981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (3.1%)
   patch tree reduce : 2.00 us    (1.1%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 157.70 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8691285809727983e-22,1.0000602135957465e-22,-1.3311638042033585e-22)
    sum a = (4.106470517896378e-25,-8.241749623297098e-27,1.3001031598229332e-26)
    sum e = 7.860250676528512e-16
    sum de = 3.928897086549961e-32
Info: cfl dt = 49.433982020097936 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0022e+04 | 2592 |      1 | 6.476e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2747911.9413237334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18730.84987716738, dt = 7.480286625886947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.7%)
   patch tree reduce : 1.65 us    (0.8%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.6%)
   LB compute        : 180.39 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.772077673883826e-22,9.95485879236942e-23,-1.2982329849419983e-22)
    sum a = (1.3975739813624627e-25,-6.016997785429081e-26,-7.587233350156997e-26)
    sum e = 7.857535783107327e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 49.43381337293599 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0589e+04 | 2592 |      1 | 6.386e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 421695.37458697474 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 428                                                     [SPH][rank=0]
Info: time since start : 39.571047943 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000824534 s
sph::RenderFieldGetter compute custom field took :  0.000718636 s
rho_t_ampl=0.00113772, rho_t_phi=3.14159 rad
eps_t_ampl=-5.17218e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-5.49538e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19091.88s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 18738.330163793267, dt = 49.43381337293599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.57 us   (5.1%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 218.40 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7048095848433216e-22,9.638095415065136e-23,-1.3390635639086357e-22)
    sum a = (-2.5025450139897274e-25,9.550261250130431e-26,-1.5744461956252825e-25)
    sum e = 7.86017682345167e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 49.43263715739159 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3574e+04 | 2592 |      1 | 4.838e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3678307.786144434 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18787.763977166203, dt = 49.43263715739159 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.8%)
   patch tree reduce : 1.65 us    (1.0%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.5%)
   LB compute        : 140.66 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9217620094205213e-22,1.0494732544911517e-22,-1.437054737248466e-22)
    sum a = (-3.1926817889628485e-25,-2.443431288980818e-26,6.306600331262008e-26)
    sum e = 7.860055552260971e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 49.43150268782873 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6806e+04 | 2592 |      1 | 4.563e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3900099.626783299 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18837.196614323595, dt = 49.43150268782873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.9%)
   patch tree reduce : 1.68 us    (1.1%)
   gen split merge   : 931.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.6%)
   LB compute        : 137.06 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0812027853524041e-22,1.0077817220869626e-22,-1.3513781560762242e-22)
    sum a = (2.5163352129446854e-25,8.696395245093367e-27,-4.613480462316065e-26)
    sum e = 7.859953945593754e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 49.43039943770155 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7629e+04 | 2592 |      1 | 4.498e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3956488.2602088875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18886.628117011423, dt = 49.43039943770155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.5%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 142.46 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8257380960573583e-22,1.0202691233370122e-22,-1.4011725744362275e-22)
    sum a = (-1.7804400505301125e-25,8.315485072751929e-26,3.11092677627007e-26)
    sum e = 7.859850606804205e-16
    sum de = -6.77927340424307e-32
Info: cfl dt = 49.42932808354165 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7819e+04 | 2592 |      1 | 4.483e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3969441.2946492587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18936.058516449124, dt = 49.42932808354165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (2.5%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 136.93 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0229208914127304e-22,1.0797675635554034e-22,-1.3667044456482544e-22)
    sum a = (2.653485009823994e-25,2.08527445520629e-25,5.948714293404648e-26)
    sum e = 7.859746066547065e-16
    sum de = 9.55261252416069e-32
Info: cfl dt = 49.42828911790755 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8331e+04 | 2592 |      1 | 4.444e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4004497.1451074504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18985.487844532665, dt = 49.42828911790755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (1.9%)
   patch tree reduce : 922.00 ns  (0.6%)
   gen split merge   : 560.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.5%)
   LB compute        : 145.21 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 1.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7872258313395123e-22,1.2138373821808447e-22,-1.3302874721400859e-22)
    sum a = (-1.6653545719787363e-25,5.625872288151548e-26,-3.2501240631526914e-26)
    sum e = 7.859640529936361e-16
    sum de = -2.465190328815662e-32
Info: cfl dt = 49.42728301861986 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2103e+04 | 2592 |      1 | 4.975e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3576906.058209236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19034.91613365057, dt = 49.42728301861986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.5%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 154.02 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9718279535537212e-22,1.204002713747949e-22,-1.369086094423428e-22)
    sum a = (1.5770972986670058e-26,-1.2828533358445186e-25,-5.247055953990948e-26)
    sum e = 7.859534206608231e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 49.42631024719875 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5416e+04 | 2592 |      1 | 5.707e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3117737.029180578 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19084.34341666919, dt = 7.540146440929675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (3.1%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.9%)
   LB compute        : 152.09 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9384506574649212e-22,1.148718558330193e-22,-1.3779775973379574e-22)
    sum a = (-1.61056987249404e-25,-1.055205848032068e-25,1.1176113555999828e-25)
    sum e = 7.857396651909779e-16
    sum de = 2.7733391199176196e-32
Info: cfl dt = 49.42617742963907 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6169e+04 | 2592 |      1 | 4.615e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 588228.2859443611 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 436                                                     [SPH][rank=0]
Info: time since start : 40.357998729 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008461670000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007466790000000001 s
rho_t_ampl=0.00100452, rho_t_phi=3.14159 rad
eps_t_ampl=-5.47142e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.74592e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19445.44s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 19091.88356311012, dt = 49.42617742963907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.09 us   (5.0%)
   patch tree reduce : 2.11 us    (0.9%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 210.75 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (76.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0231776398441827e-22,1.0974240328355512e-22,-1.3165466850223093e-22)
    sum a = (-1.1897180734777333e-26,-2.3393877637688026e-26,5.190004982326257e-26)
    sum e = 7.859453409839195e-16
    sum de = 1.617781153285278e-32
Info: cfl dt = 49.42523068798401 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5903e+04 | 2592 |      1 | 4.637e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3837633.6124158874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19141.30974053976, dt = 49.42523068798401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (3.4%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 134.96 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.977476419045672e-22,1.1061825642881802e-22,-1.3056884888936468e-22)
    sum a = (1.455618182418331e-25,-1.5104023921942577e-25,4.1171997750284e-26)
    sum e = 7.8593238951057e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 49.424331294107006 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6843e+04 | 2592 |      1 | 4.560e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3902062.321798975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19190.734971227743, dt = 49.424331294107006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.9%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 1.05 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 136.77 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.864763857638109e-22,9.99995023564323e-23,-1.28799068656791e-22)
    sum a = (-2.4907606621554904e-25,-4.257983472991203e-26,1.1263515978477646e-25)
    sum e = 7.859216731733842e-16
    sum de = 6.008901426488176e-32
Info: cfl dt = 49.4234664280685 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.8965e+04 | 2592 |      1 | 5.294e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3361195.749122403 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19240.15930252185, dt = 49.4234664280685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (3.0%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (1.1%)
   LB compute        : 134.17 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0889052382959733e-22,1.0056956410814126e-22,-1.2146623912067656e-22)
    sum a = (-5.131207665694797e-26,2.209780461360526e-25,-8.375533682304745e-26)
    sum e = 7.859109406991385e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 49.42263663071364 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7776e+04 | 2592 |      1 | 4.486e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3965933.3108512107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19289.58276894992, dt = 49.42263663071364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.9%)
   patch tree reduce : 1.40 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.9%)
   LB compute        : 130.67 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0457715018119857e-22,1.1800970277631942e-22,-1.3045879825630126e-22)
    sum a = (-3.219384628757449e-26,-1.1403262918194385e-25,1.3900566794613442e-25)
    sum e = 7.859002392835076e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 49.42184227594329 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8920e+04 | 2592 |      1 | 4.399e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4044409.293665685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19339.005405580632, dt = 49.42184227594329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (1.8%)
   patch tree reduce : 11.68 us   (7.7%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 130.27 us  (85.6%)
   LB move op cnt    : 0
   LB apply          : 1.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0529604578926505e-22,1.0409564276165698e-22,-1.1808416396251633e-22)
    sum a = (-1.8002477908472338e-26,-2.2861858030278e-26,1.3605802774768683e-26)
    sum e = 7.858895898888467e-16
    sum de = 4.5451946687538766e-32
Info: cfl dt = 49.42108372218994 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8815e+04 | 2592 |      1 | 4.407e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4037171.6770396624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19388.427247856576, dt = 49.42108372218994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (1.7%)
   patch tree reduce : 881.00 ns  (0.6%)
   gen split merge   : 431.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 561.00 ns  (0.4%)
   LB compute        : 127.25 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 1.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0529604578926505e-22,1.0521791422570046e-22,-1.2051049662344233e-22)
    sum a = (-8.274119372974752e-28,-1.1990874265141584e-25,-3.777499135971435e-26)
    sum e = 7.858790136372515e-16
    sum de = 5.46964104205975e-32
Info: cfl dt = 49.42036131071509 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9082e+04 | 2592 |      1 | 4.387e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4055406.290886137 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19437.848331578767, dt = 7.588630848211324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (2.0%)
   patch tree reduce : 851.00 ns  (0.6%)
   gen split merge   : 621.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.9%)
   LB compute        : 128.62 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 1.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0937834584935673e-22,1.0190766472237435e-22,-1.2206680435248607e-22)
    sum a = (1.8506446997553527e-25,4.3703887754459704e-26,-1.2864902560578477e-25)
    sum e = 7.857253458649927e-16
    sum de = 2.3881531310401725e-32
Info: cfl dt = 49.42026815994634 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9363e+04 | 2592 |      1 | 4.366e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 625668.5984931767 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 444                                                     [SPH][rank=0]
Info: time since start : 40.914352094 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007117860000000001 s
sph::RenderFieldGetter compute custom field took :  0.000531505 s
rho_t_ampl=0.000845975, rho_t_phi=3.14159 rad
eps_t_ampl=-5.70659e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.82576e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19798.99s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 19445.43696242698, dt = 49.42026815994634 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.56 us   (5.2%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 852.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.6%)
   LB compute        : 196.30 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9928813249328103e-22,1.0468917292467837e-22,-1.2876947844622038e-22)
    sum a = (1.0666092064434726e-25,1.0237393661801399e-25,1.408792792983499e-25)
    sum e = 7.858710606474492e-16
    sum de = 2.311115933264683e-33
Info: cfl dt = 49.41957302424125 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6816e+04 | 2592 |      1 | 4.562e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3899788.7686334904 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19494.857230586924, dt = 49.41957302424125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (3.0%)
   patch tree reduce : 1.49 us    (0.8%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 156.91 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9384506574649212e-22,1.1119714390785815e-22,-1.1514720406280925e-22)
    sum a = (-9.832411854884997e-26,1.2875716798406484e-25,1.0458172038022438e-25)
    sum e = 7.858585772900601e-16
    sum de = 0
Info: cfl dt = 49.4189296521574 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.5340e+04 | 2592 |      1 | 5.717e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3112033.362381384 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19544.276803611167, dt = 49.4189296521574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (3.0%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 153.18 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0596359171104103e-22,1.182146000597011e-22,-1.1087579231220367e-22)
    sum a = (-1.2448788692975648e-25,-1.2203028346898035e-25,1.8181558743095688e-25)
    sum e = 7.858483865142715e-16
    sum de = 2.850376317693109e-32
Info: cfl dt = 49.41832325985139 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5476e+04 | 2592 |      1 | 5.700e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3121379.9374388773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19593.695733263325, dt = 49.41832325985139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (2.7%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 161.50 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1032831504573026e-22,1.0598535133408837e-22,-9.998236331760251e-23)
    sum a = (8.709137467281151e-26,-1.4663246852504419e-25,4.5809478772858986e-26)
    sum e = 7.858383359190174e-16
    sum de = -3.851859888774472e-33
Info: cfl dt = 49.417754243572155 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5331e+04 | 2592 |      1 | 5.718e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3111348.4867795818 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19643.114056523176, dt = 49.417754243572155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.2%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.9%)
   LB compute        : 157.66 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.007515985525592e-22,9.813065459405641e-23,-1.0107915867505839e-22)
    sum a = (6.554105466956364e-26,-1.7189757234266083e-27,6.853607075273809e-27)
    sum e = 7.858284643129954e-16
    sum de = 2.69630192214213e-32
Info: cfl dt = 49.41722285316913 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5208e+04 | 2592 |      1 | 5.734e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3102865.63788429 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 19692.531810766748, dt = 49.41722285316913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (2.9%)
   patch tree reduce : 1.47 us    (0.8%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 155.82 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9705442113964597e-22,1.0162173121531554e-22,-1.0170302829381615e-22)
    sum a = (3.12573664130878e-25,-6.164782097951353e-26,4.783520956308631e-26)
    sum e = 7.858187910201519e-16
    sum de = 3.928897086549961e-32
Info: cfl dt = 49.416729322643164 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5002e+04 | 2592 |      1 | 4.713e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3775069.068162356 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19741.949033619916, dt = 49.416729322643164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (2.7%)
   patch tree reduce : 1.61 us    (1.0%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 137.28 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7892798187911305e-22,9.70970415727488e-23,-9.832657019923396e-23)
    sum a = (6.19932125747881e-26,8.863998071525695e-26,-1.5225904415075517e-25)
    sum e = 7.858093352178847e-16
    sum de = 5.623715437610729e-32
Info: cfl dt = 49.416273868338365 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7825e+04 | 2592 |      1 | 4.483e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3968751.3887046264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19791.365762942558, dt = 7.62459880127426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (2.5%)
   patch tree reduce : 1.20 us    (0.8%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.8%)
   LB compute        : 133.31 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.845507725279186e-22,1.0149105027540055e-22,-1.0443148611215732e-22)
    sum a = (-2.6966107229194984e-26,-2.312096294033014e-26,-5.955126151804509e-26)
    sum e = 7.857121068093085e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 49.41622312798173 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8684e+04 | 2592 |      1 | 4.417e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 621442.424169277 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 452                                                     [SPH][rank=0]
Info: time since start : 41.51318332 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007984450000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006849950000000001 s
rho_t_ampl=0.000666081, rho_t_phi=3.14159 rad
eps_t_ampl=-5.87176e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.70759e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20152.54s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 19798.990361743832, dt = 49.41622312798173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.38 us   (5.6%)
   patch tree reduce : 2.25 us    (1.1%)
   gen split merge   : 1.04 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 176.91 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.864763857638109e-22,9.992157519579229e-23,-1.0702085471471782e-22)
    sum a = (2.4195530893698896e-25,8.58099537351184e-26,8.131716854706984e-26)
    sum e = 7.858023191206982e-16
    sum de = 7.241496590896007e-32
Info: cfl dt = 49.415795532418855 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7469e+04 | 2592 |      1 | 4.510e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3944335.181232171 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19848.406584871813, dt = 49.415795532418855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (2.7%)
   patch tree reduce : 1.72 us    (1.1%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 141.42 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6632163389480477e-22,1.0685027261254334e-22,-9.952190925463466e-23)
    sum a = (-2.0297292380022382e-25,9.776359789104298e-26,-6.15440023361963e-27)
    sum e = 7.857915482813285e-16
    sum de = 4.622231866529366e-32
Info: cfl dt = 49.4154228607417 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7868e+04 | 2592 |      1 | 4.479e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3971674.8266795045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19897.82238040423, dt = 49.4154228607417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (2.8%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 134.28 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.887357719605912e-22,1.1197942428493939e-22,-1.0198727012350457e-22)
    sum a = (2.083761744816664e-25,2.6266181175915417e-25,1.2266640117626883e-25)
    sum e = 7.857829108678642e-16
    sum de = 3.0814879110195774e-32
Info: cfl dt = 49.415088730224475 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7390e+04 | 2592 |      1 | 4.516e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3938826.825743556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19947.237803264972, dt = 49.415088730224475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (2.3%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 651.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 132.88 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (57.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6503789173754322e-22,1.2903233416646233e-22,-9.274283183770433e-23)
    sum a = (1.9682374872076305e-27,-8.543931765276541e-26,1.9536227807540474e-25)
    sum e = 7.857745536205539e-16
    sum de = -1.232595164407831e-32
Info: cfl dt = 49.41479338685806 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7980e+04 | 2592 |      1 | 4.471e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3979284.8553605247 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19996.652891995196, dt = 49.41479338685806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (2.5%)
   patch tree reduce : 1.39 us    (0.8%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.6%)
   LB compute        : 150.75 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.715336270532866e-22,1.1620674709185921e-22,-8.129290862736763e-23)
    sum a = (1.169095457767819e-25,1.0004385332086962e-25,9.869353140799707e-26)
    sum e = 7.857665052843986e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 49.41453695366627 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6968e+04 | 2592 |      1 | 4.550e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3909825.5044594468 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20046.067685382055, dt = 49.41453695366627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.3%)
   patch tree reduce : 1.34 us    (0.8%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 152.99 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 742.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6164881244237278e-22,1.2573552383884506e-22,-7.880444654429423e-23)
    sum a = (-2.8775130601195375e-25,-3.3910728506010596e-26,4.698549995695108e-26)
    sum e = 7.857587816205759e-16
    sum de = 4.3140830754274083e-32
Info: cfl dt = 49.41431953773902 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7631e+04 | 2592 |      1 | 4.498e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3955284.4829947692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20095.482222335722, dt = 49.41431953773902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (2.2%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 144.11 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8904387007833398e-22,1.2074698204961155e-22,-7.77602542512496e-23)
    sum a = (-1.8266372170292215e-25,9.263673883922319e-27,2.0259627927092905e-26)
    sum e = 7.857513979545748e-16
    sum de = -1.1401505270772436e-31
Info: cfl dt = 49.41414122834626 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8889e+04 | 2592 |      1 | 4.401e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4041642.8110381677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20144.896541873462, dt = 7.647219187219889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (1.8%)
   patch tree reduce : 762.00 ns  (0.6%)
   gen split merge   : 560.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.6%)
   LB compute        : 128.26 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 1.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.848845454888066e-22,1.2188650379889322e-22,-7.826564482604229e-23)
    sum a = (8.039059163515242e-26,8.202466410063103e-26,-1.7833916542846389e-25)
    sum e = 7.857013272869531e-16
    sum de = 1.217187724852733e-31
Info: cfl dt = 49.414134451285825 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8611e+04 | 2592 |      1 | 4.422e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 622512.598739494 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 460                                                     [SPH][rank=0]
Info: time since start : 42.049730372 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008016200000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007130680000000001 s
rho_t_ampl=0.000469393, rho_t_phi=3.14159 rad
eps_t_ampl=-5.96276e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.36914e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20506.10s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 20152.543761060682, dt = 49.414134451285825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.53 us   (4.9%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 226.35 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8159816556621706e-22,1.262171277325302e-22,-8.783748457601377e-23)
    sum a = (-3.702731102128724e-25,-7.617034267141102e-26,-5.341350444905756e-26)
    sum e = 7.857460356225118e-16
    sum de = -8.320017359752859e-32
Info: cfl dt = 49.41398391850384 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6876e+04 | 2592 |      1 | 4.557e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3903469.3444586876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20201.95789551197, dt = 49.41398391850384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (2.1%)
   patch tree reduce : 460.00 ns  (0.3%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.3%)
   LB compute        : 130.70 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 1.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1048236410460164e-22,1.185439601569235e-22,-8.739031192185647e-23)
    sum a = (-2.1216847919427986e-25,-5.964423876185229e-26,-4.6994363584296167e-26)
    sum e = 7.857380495927403e-16
    sum de = -1.1093356479670479e-31
Info: cfl dt = 49.41389017132131 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8958e+04 | 2592 |      1 | 4.396e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4046321.042956039 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20251.371879430473, dt = 49.41389017132131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (2.0%)
   patch tree reduce : 491.00 ns  (0.4%)
   gen split merge   : 481.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 540.00 ns  (0.4%)
   LB compute        : 127.67 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 1.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.192631604602706e-22,1.1600355477853016e-22,-8.955388858095446e-23)
    sum a = (2.888294488393414e-25,5.516512974244358e-26,7.531261890485796e-26)
    sum e = 7.857318374265539e-16
    sum de = -6.317050217590134e-32
Info: cfl dt = 49.413835620027555 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9373e+04 | 2592 |      1 | 4.366e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4074769.5247460688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20300.785769601793, dt = 49.413835620027555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (1.7%)
   patch tree reduce : 571.00 ns  (0.4%)
   gen split merge   : 421.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 430.00 ns  (0.3%)
   LB compute        : 124.54 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 1.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8758040401905582e-22,1.215657688442899e-22,-8.281057131032552e-23)
    sum a = (-2.6178812234311933e-25,6.188569089303925e-26,1.5175767528533834e-28)
    sum e = 7.857260151468736e-16
    sum de = 4.468157470978387e-32
Info: cfl dt = 49.41382035748978 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9024e+04 | 2592 |      1 | 4.391e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4050803.7749756197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20350.19960522182, dt = 49.41382035748978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (1.8%)
   patch tree reduce : 671.00 ns  (0.5%)
   gen split merge   : 470.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 411.00 ns  (0.3%)
   LB compute        : 125.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1772266987155674e-22,1.2479097042969747e-22,-8.466006560475279e-23)
    sum a = (1.2159821342146758e-25,-6.423880274507909e-26,-3.27977163465249e-26)
    sum e = 7.857206007603871e-16
    sum de = -1.09392820841195e-31
Info: cfl dt = 49.41384437933775 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8059e+04 | 2592 |      1 | 4.464e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3984609.188499653 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20399.61342557931, dt = 49.41384437933775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (2.6%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.9%)
   LB compute        : 149.36 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9887733500295736e-22,1.1849882859670729e-22,-8.709480655138448e-23)
    sum a = (-1.568823179294031e-25,-1.349569054939979e-25,2.129838775382915e-26)
    sum e = 7.857156048964995e-16
    sum de = -5.39260384428426e-32
Info: cfl dt = 49.41390766542533 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4073e+04 | 2592 |      1 | 4.794e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3711062.7208052683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20449.02726995865, dt = 49.41390766542533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.0%)
   patch tree reduce : 1.27 us    (0.7%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.9%)
   LB compute        : 165.51 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2034150387237026e-22,1.1008349758643376e-22,-8.470582175071629e-23)
    sum a = (7.700259048280935e-26,7.341948935661488e-26,-5.368117234925713e-27)
    sum e = 7.857110375050522e-16
    sum de = 8.16594296420188e-32
Info: cfl dt = 49.41401017789732 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7165e+04 | 2592 |      1 | 5.496e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3236957.020555355 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20498.441177624074, dt = 7.655982753465651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.7%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 151.90 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.117661062618632e-22,1.1579093498373372e-22,-8.54057680713257e-23)
    sum a = (1.791472209694079e-26,-7.404807341205157e-26,4.916703402914206e-26)
    sum e = 7.856941365515173e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 49.41404766972712 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7356e+04 | 2592 |      1 | 4.519e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609880.5832044086 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 468                                                     [SPH][rank=0]
Info: time since start : 42.598691973 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000813749 s
sph::RenderFieldGetter compute custom field took :  0.0006982850000000001 s
rho_t_ampl=0.000260888, rho_t_phi=3.14159 rad
eps_t_ampl=-5.97731e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.79369e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20859.65s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 20506.09716037754, dt = 49.41404766972712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.37 us   (5.7%)
   patch tree reduce : 1.97 us    (1.0%)
   gen split merge   : 941.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.7%)
   LB compute        : 172.89 us  (86.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (75.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0996886724169704e-22,1.1157103381116056e-22,-8.276746581925996e-23)
    sum a = (7.222303289046598e-26,-2.5509447451526888e-26,-6.500866379331807e-26)
    sum e = 7.85707879300032e-16
    sum de = 2.7733391199176196e-32
Info: cfl dt = 49.414177222678674 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7877e+04 | 2592 |      1 | 4.478e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3972137.3759602574 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20555.511208047268, dt = 49.414177222678674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (2.1%)
   patch tree reduce : 1.01 us    (0.7%)
   gen split merge   : 611.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.6%)
   LB compute        : 139.16 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.044231011223272e-22,1.1150724787272163e-22,-8.880075714041392e-23)
    sum a = (1.9234193406040172e-26,-5.464565433123759e-26,-1.1889625978475637e-26)
    sum e = 7.857034714477352e-16
    sum de = 1.5407439555097887e-32
Info: cfl dt = 49.41436410375726 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8480e+04 | 2592 |      1 | 4.432e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4013497.5375341442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20604.925385269948, dt = 49.41436410375726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (2.1%)
   patch tree reduce : 1.03 us    (0.6%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (1.0%)
   LB compute        : 149.40 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.033447577102275e-22,1.0808788028602827e-22,-8.807585867333629e-23)
    sum a = (2.4620206338789075e-25,-7.845693676912555e-26,1.6792883155026732e-25)
    sum e = 7.857003135959417e-16
    sum de = -7.703719777548943e-32
Info: cfl dt = 49.41458992790028 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7152e+04 | 2592 |      1 | 4.535e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3922395.9748989823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20654.339749373707, dt = 49.41458992790028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (1.8%)
   patch tree reduce : 751.00 ns  (0.4%)
   gen split merge   : 561.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 157.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8809390088196045e-22,1.0362306518001507e-22,-7.533491695875724e-23)
    sum a = (1.6089087803471928e-25,-2.2475728786723407e-26,-5.229447341903612e-26)
    sum e = 7.856976141645474e-16
    sum de = -6.933347799794049e-32
Info: cfl dt = 49.41485463442447 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8002e+04 | 2592 |      1 | 4.469e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3980742.8615655163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20703.754339301606, dt = 49.41485463442447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (2.0%)
   patch tree reduce : 891.00 ns  (0.6%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.8%)
   LB compute        : 133.03 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8460212221420905e-22,1.0389485746487279e-22,-8.336016291475119e-23)
    sum a = (2.797059785761863e-26,-1.7818553088745666e-25,-3.3804433536283805e-26)
    sum e = 7.856953808148812e-16
    sum de = -3.235562306570556e-32
Info: cfl dt = 49.41515809288762 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7778e+04 | 2592 |      1 | 4.486e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3965384.837076849 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20753.16919393603, dt = 49.41515809288762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (2.1%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 560.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 142.83 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.808022454287149e-22,9.124418025919655e-23,-8.457377302569204e-23)
    sum a = (8.181662357254011e-26,-7.905166664517641e-26,-4.641543772964601e-27)
    sum e = 7.856936179848372e-16
    sum de = -2.311115933264683e-32
Info: cfl dt = 49.4155001574425 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7666e+04 | 2592 |      1 | 4.495e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3957738.3652265165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20802.58435202892, dt = 49.4155001574425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (2.2%)
   patch tree reduce : 1.68 us    (1.0%)
   gen split merge   : 722.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 156.65 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7566727679966876e-22,8.978793524955299e-23,-8.408259282868552e-23)
    sum a = (-7.950989938371079e-26,-7.192584088084986e-26,-7.704145238861604e-28)
    sum e = 7.856923292576267e-16
    sum de = 6.008901426488176e-32
Info: cfl dt = 49.41588066488932 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6857e+04 | 2592 |      1 | 4.559e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3902249.748712281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20851.999852186364, dt = 7.650707508029882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.2%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 143.52 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8039144793839122e-22,8.941304242269021e-23,-8.399284015085335e-23)
    sum a = (-1.184742632377507e-25,-5.598039690225232e-26,-4.168289513588365e-26)
    sum e = 7.856912966072517e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 49.415961469830634 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8740e+04 | 2592 |      1 | 4.413e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 624173.7409577129 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 476                                                     [SPH][rank=0]
Info: time since start : 43.136375037 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000807479 s
sph::RenderFieldGetter compute custom field took :  0.000639097 s
rho_t_ampl=4.58393e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-5.91503e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.97053e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21213.20s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 20859.650559694393, dt = 49.415961469830634 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.02 us   (5.2%)
   patch tree reduce : 1.88 us    (0.9%)
   gen split merge   : 821.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.6%)
   LB compute        : 187.07 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.881452505682509e-22,8.670996284280639e-23,-8.620914520214225e-23)
    sum a = (3.35492426320196e-25,-1.3750413790234974e-25,-3.208527535670003e-26)
    sum e = 7.8569170279154765e-16
    sum de = 2.311115933264683e-32
Info: cfl dt = 49.41599769794556 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7025e+04 | 2592 |      1 | 4.545e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3913803.2546673375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20909.066521164223, dt = 49.41599769794556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (3.0%)
   patch tree reduce : 2.02 us    (1.3%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 135.83 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5933807655930201e-22,7.789506708608522e-23,-8.755753329070372e-23)
    sum a = (-1.7281254420798198e-25,7.421809417553433e-26,7.138225036467779e-26)
    sum e = 7.856913085219009e-16
    sum de = -7.087422195345028e-32
Info: cfl dt = 49.41555004226069 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7288e+04 | 2592 |      1 | 4.524e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3931898.588190685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20958.48251886217, dt = 49.41555004226069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.8%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 1.17 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 149.00 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.814697913504909e-22,8.679581309957326e-23,-8.147366461925218e-23)
    sum a = (-2.934264430023379e-25,-1.4205093691645122e-25,-3.3819749377822066e-26)
    sum e = 7.856915284962713e-16
    sum de = 6.317050217590134e-32
Info: cfl dt = 49.41512711160912 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5624e+04 | 2592 |      1 | 4.660e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3817633.7623652006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21007.89806890443, dt = 49.41512711160912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (3.1%)
   patch tree reduce : 1.82 us    (1.1%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 149.75 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.970800959827912e-22,7.443237320158429e-23,-8.574417917504229e-23)
    sum a = (-1.0366155237164391e-25,2.656005296007293e-26,-3.799743147642732e-26)
    sum e = 7.856922273246216e-16
    sum de = 4.1600086798764294e-32
Info: cfl dt = 49.41474419471324 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5320e+04 | 2592 |      1 | 4.685e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3796743.257519665 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21057.31319601604, dt = 49.41474419471324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.5%)
   patch tree reduce : 1.79 us    (1.0%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 152.96 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9856923688521458e-22,7.991355104366691e-23,-8.772503287747388e-23)
    sum a = (2.0385204898360238e-25,-1.7814921898218287e-25,3.7763227551927025e-26)
    sum e = 7.856934036673764e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 49.41440147286666 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0340e+04 | 2592 |      1 | 5.149e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3454883.4599742913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21106.727940210752, dt = 49.41440147286666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.6%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 152.13 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (58.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8177788946823368e-22,6.605254568534753e-23,-8.39871387973543e-23)
    sum a = (2.2580980668324674e-25,6.307003318849752e-26,1.6047481158770256e-26)
    sum e = 7.85695055250036e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 49.41409910875517 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5988e+04 | 2592 |      1 | 4.630e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3842551.945190903 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21156.14234168362, dt = 49.41409910875517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.9%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 144.77 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6924856601336107e-22,7.512699805949002e-23,-8.373070227821492e-23)
    sum a = (2.21564619300408e-25,1.0526111261157739e-25,-8.9727672458577e-26)
    sum e = 7.856971788565792e-16
    sum de = 1.3866695599588098e-32
Info: cfl dt = 49.41383724400552 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7561e+04 | 2592 |      1 | 4.503e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3950463.121854549 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21205.556440792374, dt = 7.6475182188733015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.8%)
   patch tree reduce : 1.79 us    (1.1%)
   gen split merge   : 1.11 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 141.61 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6698917981658078e-22,7.697267828762159e-23,-8.703028825011714e-23)
    sum a = (5.381781848978635e-26,-2.2442006216569437e-26,-1.0067585632853678e-25)
    sum e = 7.856931237482297e-16
    sum de = -2.311115933264683e-32
Info: cfl dt = 49.413819544237946 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8654e+04 | 2592 |      1 | 4.419e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 622999.9085550255 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 484                                                     [SPH][rank=0]
Info: time since start : 43.688586714 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000788801 s
sph::RenderFieldGetter compute custom field took :  0.0006821010000000001 s
rho_t_ampl=-0.000170315, rho_t_phi=3.14159 rad
eps_t_ampl=-5.77752e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.89522e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21566.76s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 21213.203959011247, dt = 49.413819544237946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.02 us   (5.4%)
   patch tree reduce : 2.00 us    (1.0%)
   gen split merge   : 991.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 177.16 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6555138860044785e-22,7.537923333492071e-23,-9.204693006500429e-23)
    sum a = (-2.5236064087572993e-25,8.800855022759634e-26,-7.214309789534565e-26)
    sum e = 7.856991556230316e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 49.413585455995005 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7785e+04 | 2592 |      1 | 4.486e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3965783.468258887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21262.617778555486, dt = 49.413585455995005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.9%)
   patch tree reduce : 1.68 us    (1.1%)
   gen split merge   : 841.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 133.40 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8691285809727983e-22,8.245385612970421e-23,-9.490682290976129e-23)
    sum a = (6.928321320415904e-26,-6.843173208083045e-26,2.9735959554388385e-26)
    sum e = 7.857028071668046e-16
    sum de = 1.232595164407831e-32
Info: cfl dt = 49.41341122812072 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7668e+04 | 2592 |      1 | 4.495e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3957785.255282321 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21312.03136401148, dt = 49.41341122812072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (2.7%)
   patch tree reduce : 1.14 us    (0.8%)
   gen split merge   : 912.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.7%)
   LB compute        : 130.59 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7710506801580169e-22,7.52070313596068e-23,-9.092036295630045e-23)
    sum a = (-1.8359142599625568e-25,2.224369865027646e-26,-7.647658080963759e-26)
    sum e = 7.857063885798055e-16
    sum de = -4.0059342843254506e-32
Info: cfl dt = 49.4132778213845 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8671e+04 | 2592 |      1 | 4.418e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4026604.1482829275 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21361.4447752396, dt = 49.4132778213845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.6%)
   patch tree reduce : 1.28 us    (0.9%)
   gen split merge   : 641.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.7%)
   LB compute        : 129.44 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9066138519648353e-22,7.854435979906266e-23,-9.732348345796972e-23)
    sum a = (1.3263664085768618e-26,-1.4642000837530668e-25,-1.436156777146196e-25)
    sum e = 7.85710418772647e-16
    sum de = 4.3140830754274083e-32
Info: cfl dt = 49.41318527805 cfl multiplier : 0.9999999999999997              [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7645e+04 | 2592 |      1 | 4.496e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3956146.613439335 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21410.858053060987, dt = 49.41318527805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (2.5%)
   patch tree reduce : 1.74 us    (1.2%)
   gen split merge   : 701.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (1.0%)
   LB compute        : 130.03 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 712.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8516696876340414e-22,6.714172067189912e-23,-1.0607877297373742e-22)
    sum a = (2.2738784422275157e-25,2.7655568206065913e-27,3.582790046064922e-26)
    sum e = 7.857148898074702e-16
    sum de = 3.0814879110195774e-32
Info: cfl dt = 49.413133628143214 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7843e+04 | 2592 |      1 | 4.481e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3969752.83771364 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 21460.271238339035, dt = 49.413133628143214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.6%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 136.06 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6683513075770938e-22,7.0965868207554e-23,-9.987496475299287e-23)
    sum a = (-3.294133775365573e-25,3.294393321013518e-26,-4.667831071405137e-27)
    sum e = 7.857197930033273e-16
    sum de = 3.697785493223493e-32
Info: cfl dt = 49.4131228827378 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7679e+04 | 2592 |      1 | 4.494e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3958490.8001749064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21509.684371967178, dt = 49.4131228827378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.8%)
   patch tree reduce : 1.38 us    (0.9%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 136.10 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9718279535537212e-22,7.334079119848784e-23,-1.0110612736011415e-22)
    sum a = (5.32803141441556e-27,2.3178724089717117e-26,-1.8612262238957475e-26)
    sum e = 7.857251187473822e-16
    sum de = -3.0814879110195774e-32
Info: cfl dt = 49.413153031665445 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8219e+04 | 2592 |      1 | 4.452e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3995528.2447584146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21559.097494849917, dt = 7.659863478183979 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.5%)
   patch tree reduce : 1.29 us    (0.7%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.9%)
   LB compute        : 159.69 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.926640229618115e-22,7.327740642947305e-23,-1.0159321369328733e-22)
    sum a = (-1.9770130683607853e-26,-1.2852279336688292e-25,-1.2641458533434182e-25)
    sum e = 7.85699464353243e-16
    sum de = -4.3140830754274083e-32
Info: cfl dt = 49.41317990369704 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7142e+04 | 2592 |      1 | 4.536e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 607919.7893446826 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 492                                                     [SPH][rank=0]
Info: time since start : 44.228828829 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008317550000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006700440000000001 s
rho_t_ampl=-0.000382108, rho_t_phi=3.14159 rad
eps_t_ampl=-5.56829e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.56968e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21920.31s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 21566.7573583281, dt = 49.41317990369704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.99 us   (4.9%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 217.04 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8711825684244168e-22,6.634499819554868e-23,-1.0825263587962757e-22)
    sum a = (4.417878283388337e-26,6.176606116195937e-26,6.54390054002446e-26)
    sum e = 7.857295104677191e-16
    sum de = 2.311115933264683e-32
Info: cfl dt = 49.413238840591895 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6808e+04 | 2592 |      1 | 4.563e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3898678.3129430055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21616.1705382318, dt = 49.413238840591895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 16.06 us   (9.6%)
   patch tree reduce : 1.68 us    (1.0%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 138.47 us  (82.5%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8701555746986074e-22,7.410100725724116e-23,-1.0027903467922781e-22)
    sum a = (-3.759709696901709e-26,9.327296847282693e-26,-3.8981195836946636e-26)
    sum e = 7.857368331123671e-16
    sum de = 1.0322984501915584e-31
Info: cfl dt = 49.41335693836554 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7579e+04 | 2592 |      1 | 4.502e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3951619.4883608585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21665.583777072392, dt = 49.41335693836554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.7%)
   patch tree reduce : 1.08 us    (0.7%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 134.65 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8930061850978627e-22,7.948610502224123e-23,-1.0478509659476336e-22)
    sum a = (1.6898008337625254e-25,2.7383975722386234e-26,-5.899905271722669e-26)
    sum e = 7.85743422198415e-16
    sum de = -1.5407439555097887e-32
Info: cfl dt = 49.41351580643057 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7803e+04 | 2592 |      1 | 4.484e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3966974.2101555574 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21714.99713401076, dt = 49.41351580643057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (3.0%)
   patch tree reduce : 1.71 us    (1.1%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 140.68 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8131574229161952e-22,7.921491449151974e-23,-1.0819502197235674e-22)
    sum a = (-8.434587142632444e-26,1.0144351444100858e-25,-3.963583706851927e-28)
    sum e = 7.857503829800177e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 49.41371530204433 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7575e+04 | 2592 |      1 | 4.502e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3951349.7830395172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21764.41064981719, dt = 49.41371530204433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (2.4%)
   patch tree reduce : 1.35 us    (0.9%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 138.08 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8863307258801029e-22,8.605435171139868e-23,-1.0676672493034515e-22)
    sum a = (6.575417592614026e-27,-6.897454976661252e-26,-1.341561651408164e-26)
    sum e = 7.857577039014271e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 49.41395530406803 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7063e+04 | 2592 |      1 | 4.542e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3916237.2510467162 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21813.824365119235, dt = 49.41395530406803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (2.4%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 143.80 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8578316499888966e-22,7.843614434689974e-23,-1.0775130856281535e-22)
    sum a = (1.3655431101534468e-25,1.2352629478955921e-25,1.0474459235321768e-25)
    sum e = 7.857653707415591e-16
    sum de = 1.8488927466117464e-32
Info: cfl dt = 49.41423567265682 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7426e+04 | 2592 |      1 | 4.514e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3941152.4866745602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21863.238320423305, dt = 49.41423567265682 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.7%)
   patch tree reduce : 1.28 us    (0.8%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 139.48 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 650.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.746146082307143e-22,8.92998123527255e-23,-9.965605295099917e-23)
    sum a = (3.247466488447545e-25,-1.3380116831205017e-26,1.221634258486337e-25)
    sum e = 7.857733684515309e-16
    sum de = 1.2634100435180267e-31
Info: cfl dt = 49.41455624720363 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7290e+04 | 2592 |      1 | 4.524e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3931834.8619190473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21912.65255609596, dt = 7.658201548994839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (3.1%)
   patch tree reduce : 1.56 us    (1.0%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 141.48 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.68349946503278e-22,8.581044070151899e-23,-9.829013164218821e-23)
    sum a = (1.0797098954506825e-25,-2.5723314519256375e-25,5.936055354199194e-26)
    sum e = 7.857097073102166e-16
    sum de = 7.549645381997965e-32
Info: cfl dt = 49.41462690070025 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8452e+04 | 2592 |      1 | 4.434e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 621718.457954318 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 500                                                     [SPH][rank=0]
Info: time since start : 44.973967295 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00070115 s
sph::RenderFieldGetter compute custom field took :  0.000575812 s
rho_t_ampl=-0.000584184, rho_t_phi=3.14159 rad
eps_t_ampl=-5.29262e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-9.00216e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22273.86s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 21920.310757644955, dt = 49.41462690070025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.51 us   (5.4%)
   patch tree reduce : 1.93 us    (0.9%)
   gen split merge   : 922.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.6%)
   LB compute        : 188.63 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6398522316858877e-22,7.216706975579786e-23,-9.559733056329139e-23)
    sum a = (-2.87337600043305e-26,-1.0508361766799698e-25,8.116417074691724e-26)
    sum e = 7.857797431688625e-16
    sum de = -8.628166150854817e-32
Info: cfl dt = 49.41497650368076 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5773e+04 | 2592 |      1 | 5.663e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3141495.75139788 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 21969.725384545654, dt = 49.41497650368076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (2.8%)
   patch tree reduce : 1.81 us    (1.0%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 155.87 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7063500754320354e-22,7.073559695809521e-23,-9.10478961682458e-23)
    sum a = (-3.067692440252912e-26,3.204277113211978e-26,-9.502250825477912e-26)
    sum e = 7.857899953962536e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 49.41538300172288 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5734e+04 | 2592 |      1 | 5.668e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3138807.848707511 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22019.140361049336, dt = 49.41538300172288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (2.9%)
   patch tree reduce : 1.82 us    (1.1%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 149.54 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7055798301376783e-22,7.5702676183137e-23,-1.0009660010900941e-22)
    sum a = (-1.001983319522738e-25,-4.445473372561344e-26,-4.02077060071194e-26)
    sum e = 7.857989378548501e-16
    sum de = -7.934831370875412e-32
Info: cfl dt = 49.41582914302726 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.8478e+04 | 2592 |      1 | 5.347e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3327199.123119092 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22068.55574405106, dt = 49.41582914302726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (2.7%)
   patch tree reduce : 1.70 us    (0.9%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 167.61 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.75692951642814e-22,7.161857086063666e-23,-1.0072915001567999e-22)
    sum a = (-8.574996441082924e-26,-5.226583345682993e-26,3.7301375458454834e-26)
    sum e = 7.858081356123671e-16
    sum de = -3.6207482954480034e-32
Info: cfl dt = 49.4163146053074 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7180e+04 | 2592 |      1 | 4.533e-02 | 0.1% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3924457.8457087507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22117.97157319409, dt = 49.4163146053074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (3.1%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 842.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 133.88 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8018604919322937e-22,6.88430801996948e-23,-9.697076574743873e-23)
    sum a = (9.729612189948038e-26,-2.8326395764249473e-25,6.684089538256013e-27)
    sum e = 7.858175768307539e-16
    sum de = -4.3140830754274083e-32
Info: cfl dt = 49.41683912106939 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6356e+04 | 2592 |      1 | 4.599e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3867907.192680281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22167.387887799396, dt = 49.41683912106939 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (3.5%)
   patch tree reduce : 1.25 us    (0.8%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.9%)
   LB compute        : 136.74 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.702755597391703e-22,4.9138641009290565e-23,-9.739695588675315e-23)
    sum a = (-2.6612576674167886e-25,3.5874203575432825e-26,-1.5608287497943024e-25)
    sum e = 7.858272431630753e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.41740240493685 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6704e+04 | 2592 |      1 | 4.571e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3891834.097222878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22216.804726920465, dt = 49.41740240493685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (2.8%)
   patch tree reduce : 1.38 us    (0.9%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 136.11 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9423018839367058e-22,5.879639372613877e-23,-1.0913188057803046e-22)
    sum a = (9.356023163713724e-26,-1.0240256009560337e-25,4.888793294578546e-27)
    sum e = 7.858371156227899e-16
    sum de = 4.0059342843254506e-32
Info: cfl dt = 49.418004151887764 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7172e+04 | 2592 |      1 | 4.534e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3924029.637822368 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22266.2221293254, dt = 7.6420276364115125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.7%)
   patch tree reduce : 1.36 us    (0.9%)
   gen split merge   : 1.10 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 132.15 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8272785866460721e-22,5.459554810121246e-23,-1.0511711943112349e-22)
    sum a = (1.3872940148687667e-25,-8.688834141689086e-26,8.628996805866399e-26)
    sum e = 7.857228408303871e-16
    sum de = 5.46964104205975e-32
Info: cfl dt = 49.41811639158962 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8665e+04 | 2592 |      1 | 4.418e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 622663.7376315693 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 508                                                     [SPH][rank=0]
Info: time since start : 45.551958092 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008341790000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007082000000000001 s
rho_t_ampl=-0.000771434, rho_t_phi=3.14159 rad
eps_t_ampl=-4.95749e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-8.20705e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22627.42s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 22273.864156961812, dt = 49.41811639158962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.50 us   (5.8%)
   patch tree reduce : 2.01 us    (0.9%)
   gen split merge   : 1.02 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.8%)
   LB compute        : 186.99 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7566727679966876e-22,5.036160599879425e-23,-1.0054179673257913e-22)
    sum a = (-3.410566932451184e-25,1.6757834099384233e-27,-1.7126803792828588e-25)
    sum e = 7.858448409010146e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 49.41874663805737 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.7485e+04 | 2592 |      1 | 6.915e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2572826.705778501 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22323.2822733534, dt = 49.41874663805737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (2.2%)
   patch tree reduce : 1.04 us    (0.7%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.7%)
   LB compute        : 142.07 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0657978794652657e-22,5.2632024354738524e-23,-1.153696642648669e-22)
    sum a = (1.5018780316399625e-25,1.3945387664078167e-25,-4.7006932680360564e-26)
    sum e = 7.858569884698699e-16
    sum de = 2.619264724366641e-32
Info: cfl dt = 49.419430025354664 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9801e+04 | 2592 |      1 | 6.512e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2731826.3289557905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22372.70101999146, dt = 49.419430025354664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (2.8%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 146.67 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8657908513639182e-22,6.292994318016488e-23,-1.1462230604657403e-22)
    sum a = (2.1224369846130688e-26,-1.048735815766695e-25,-5.458183569385331e-26)
    sum e = 7.858673947804022e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 49.42015089520526 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9560e+04 | 2592 |      1 | 6.552e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2715310.36370177 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 22422.120450016813, dt = 49.42015089520526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (2.8%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 151.17 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8971141600010997e-22,5.1709535263918866e-23,-1.1750692229741145e-22)
    sum a = (-1.1650210808038541e-25,3.750047742875384e-26,8.386668266180348e-26)
    sum e = 7.858779122732385e-16
    sum de = 3.004450713244088e-32
Info: cfl dt = 49.420908756722085 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.6399e+04 | 2592 |      1 | 7.121e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2498397.4061236684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22471.54060091202, dt = 49.420908756722085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (2.8%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 762.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 148.06 us  (83.4%)
   LB move op cnt    : 0
   LB apply          : 14.85 us   (8.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9684902239448413e-22,5.70819961920584e-23,-1.0994108129167892e-22)
    sum a = (3.8473401429882143e-25,2.832426553110125e-26,8.655621481817711e-27)
    sum e = 7.858885321881834e-16
    sum de = -1.9259299443872359e-32
Info: cfl dt = 49.4217032053028 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8282e+04 | 2592 |      1 | 6.771e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2627697.445861001 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22520.96150966874, dt = 49.4217032053028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (2.5%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.6%)
   LB compute        : 173.62 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6824724713069707e-22,5.825311003349144e-23,-1.1137180523178223e-22)
    sum a = (-2.7236896590492343e-25,1.6203087107972093e-25,-3.996218074366874e-26)
    sum e = 7.858992338748043e-16
    sum de = -2.1570415377137042e-32
Info: cfl dt = 49.42253381981178 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0978e+04 | 2592 |      1 | 6.325e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2812805.919398005 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22570.383212874043, dt = 49.42253381981178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (2.9%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 147.63 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9505178337431797e-22,6.956859510325964e-23,-1.1454822475713358e-22)
    sum a = (1.0788950200578895e-25,-4.04425987462784e-27,1.5607815061028155e-25)
    sum e = 7.859099962979541e-16
    sum de = -2.7733391199176196e-32
Info: cfl dt = 49.4234001611555 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.5319e+04 | 2592 |      1 | 5.719e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3110794.749044482 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22619.805746693855, dt = 7.611809584806906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.5%)
   patch tree reduce : 1.52 us    (0.8%)
   gen split merge   : 752.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.5%)
   LB compute        : 169.74 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8501291970453274e-22,6.543093366263605e-23,-1.0851578264115837e-22)
    sum a = (2.5218512925266683e-25,3.220530547278564e-26,1.0148963754725672e-25)
    sum e = 7.857375574175024e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.423550486202124 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6664e+04 | 2592 |      1 | 4.574e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 599046.3511839877 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 516                                                     [SPH][rank=0]
Info: time since start : 46.241928107 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000814068 s
sph::RenderFieldGetter compute custom field took :  0.0007870790000000001 s
rho_t_ampl=-0.000939122, rho_t_phi=3.14159 rad
eps_t_ampl=-4.57138e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-7.20446e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22980.97s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 22627.417556278662, dt = 49.423550486202124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.06 us   (4.3%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 253.75 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7186740001417462e-22,6.716117738897011e-23,-1.0370756309948841e-22)
    sum a = (9.302116022344342e-26,-1.401850118339547e-26,-1.4725446121657777e-26)
    sum e = 7.85918303793606e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 49.42444405600815 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4694e+04 | 2592 |      1 | 4.739e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3754412.915034374 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22676.841106764863, dt = 49.42444405600815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (2.6%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 163.01 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7148227736699616e-22,6.532713107413873e-23,-1.0730724111500288e-22)
    sum a = (5.129954011244346e-26,-2.2677286794975314e-26,-9.372722820568691e-26)
    sum e = 7.859311228050957e-16
    sum de = 5.238529448733282e-32
Info: cfl dt = 49.425385646918755 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6344e+04 | 2592 |      1 | 4.600e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3867735.0297510987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22726.26555082087, dt = 49.425385646918755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.6%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 157.39 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7063500754320354e-22,6.39919389382307e-23,-1.138920550941552e-22)
    sum a = (1.0330112671713933e-25,5.969603770696807e-26,-3.4091829379550257e-26)
    sum e = 7.859419569021888e-16
    sum de = 3.697785493223493e-32
Info: cfl dt = 49.42636159950407 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8405e+04 | 2592 |      1 | 4.438e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4009323.882903048 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22775.69093646779, dt = 49.42636159950407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.4%)
   patch tree reduce : 1.89 us    (1.2%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 142.23 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.64010898011734e-22,6.897877575741159e-23,-1.141033388880605e-22)
    sum a = (1.0958193551389743e-25,-1.2551514901597153e-25,4.675426594153198e-26)
    sum e = 7.859527446884609e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.42737127009452 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7524e+04 | 2592 |      1 | 4.506e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3948880.7853063922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22825.117298067293, dt = 49.42737127009452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.6%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 143.91 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 812.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5695031614679555e-22,5.819694631411125e-23,-1.0979443425629068e-22)
    sum a = (-5.953604985190469e-26,4.9966454899546214e-26,-1.2925945984006798e-26)
    sum e = 7.859634835351324e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 49.428414130120814 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4968e+04 | 2592 |      1 | 5.764e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3087014.5829127817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22874.54466933739, dt = 49.428414130120814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (3.1%)
   patch tree reduce : 2.17 us    (1.2%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 156.51 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6308660365850568e-22,6.500418968770262e-23,-1.1190826126357015e-22)
    sum a = (3.5967346183431156e-26,-3.86842994086443e-26,-7.429795679018558e-26)
    sum e = 7.859741525420557e-16
    sum de = 1.5407439555097887e-33
Info: cfl dt = 49.42948963627401 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5058e+04 | 2592 |      1 | 4.708e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3779764.7516183364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22923.97308346751, dt = 49.42948963627401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (3.1%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 143.19 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5969752436333524e-22,6.0899825309283e-23,-1.170975319317908e-22)
    sum a = (-2.1358510872328915e-25,-1.7364024997054128e-25,-7.406343009348416e-26)
    sum e = 7.859847307186457e-16
    sum de = -1.3866695599588098e-32
Info: cfl dt = 49.4305972294512 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5839e+04 | 2592 |      1 | 4.642e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3833477.3625336736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22973.402573103784, dt = 7.568382491732336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.7%)
   patch tree reduce : 1.16 us    (0.7%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.9%)
   LB compute        : 141.40 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6963368866053953e-22,5.625042212198543e-23,-1.176522760319202e-22)
    sum a = (1.649057064122877e-25,-1.3052966887602045e-25,1.4310175567792057e-25)
    sum e = 7.857523894737936e-16
    sum de = -3.004450713244088e-32
Info: cfl dt = 49.4307809965383 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9266e+04 | 2592 |      1 | 4.374e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 622979.991927708 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 524                                                     [SPH][rank=0]
Info: time since start : 46.807583023 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007175850000000001 s
sph::RenderFieldGetter compute custom field took :  0.000595692 s
rho_t_ampl=-0.00108301, rho_t_phi=3.14159 rad
eps_t_ampl=-4.14408e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-6.01978e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23334.52s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 22980.970955595516, dt = 49.4307809965383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.25 us   (4.4%)
   patch tree reduce : 1.96 us    (0.8%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 231.46 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5944077593188293e-22,4.996224183705867e-23,-1.0975684989187736e-22)
    sum a = (3.431879058108846e-25,-1.6989613260086705e-25,-1.847678806795616e-26)
    sum e = 7.85992794540151e-16
    sum de = -7.626682579773454e-32
Info: cfl dt = 49.43191385496457 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4889e+04 | 2592 |      1 | 5.774e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3081837.0357559333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23030.401736592055, dt = 49.43191385496457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (3.0%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 163.20 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.389522511019888e-22,4.059042262726927e-23,-1.1466366969279223e-22)
    sum a = (1.2724592672074808e-25,-9.163645970621902e-26,5.015223254370018e-26)
    sum e = 7.860049933628336e-16
    sum de = -2.850376317693109e-32
Info: cfl dt = 49.43308841058563 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5179e+04 | 2592 |      1 | 5.737e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3101791.7122589764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23079.83365044702, dt = 49.43308841058563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (2.8%)
   patch tree reduce : 1.72 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 168.98 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.379509322193248e-22,3.7994204552741865e-23,-1.1048825803006366e-22)
    sum a = (5.191383079316432e-26,-9.342497407494407e-26,-1.64870256598635e-26)
    sum e = 7.860151759066771e-16
    sum de = 1.771855548836257e-32
Info: cfl dt = 49.434293347065726 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5706e+04 | 2592 |      1 | 5.671e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3138018.5969627914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23129.266738857605, dt = 49.434293347065726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (2.7%)
   patch tree reduce : 1.83 us    (1.0%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.6%)
   LB compute        : 163.69 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3558884664996357e-22,3.3332415259473836e-23,-1.1295037466414865e-22)
    sum a = (1.074131133146177e-25,2.9226847764548796e-26,5.612130935576333e-26)
    sum e = 7.860251569563664e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 49.43552788779703 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4388e+04 | 2592 |      1 | 5.839e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3047593.0056844587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23178.70103220467, dt = 49.43552788779703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (2.8%)
   patch tree reduce : 1.79 us    (1.0%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 158.40 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.288363629027679e-22,3.780936574056741e-23,-1.0838131724409175e-22)
    sum a = (1.1879629572471022e-25,-3.7665068546252465e-26,-2.199105261325016e-26)
    sum e = 7.860349424596545e-16
    sum de = -1.3096323621833204e-32
Info: cfl dt = 49.43679139655482 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7565e+04 | 2592 |      1 | 5.449e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3265842.0236500124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23228.136560092466, dt = 49.43679139655482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.5%)
   patch tree reduce : 1.70 us    (0.9%)
   gen split merge   : 992.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.6%)
   LB compute        : 169.20 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2244332695960542e-22,3.429366734590143e-23,-1.113992472489868e-22)
    sum a = (2.1964025971896613e-26,8.84521774020742e-27,1.7071093149474727e-26)
    sum e = 7.860445133486763e-16
    sum de = -1.0014835710813626e-32
Info: cfl dt = 49.43808322451805 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5192e+04 | 2592 |      1 | 4.696e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3789590.024842635 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23277.57335148902, dt = 49.43808322451805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.4%)
   patch tree reduce : 1.32 us    (0.7%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.8%)
   LB compute        : 174.00 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2472838799953097e-22,3.588024227221384e-23,-1.095897315493297e-22)
    sum a = (2.712908230775358e-26,1.4725327233240215e-25,-8.74099000553507e-26)
    sum e = 7.860538507708883e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 49.43940270960127 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6742e+04 | 2592 |      1 | 4.568e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3896125.97770352 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23327.01143471354, dt = 7.512920198834763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.1%)
   patch tree reduce : 1.17 us    (0.6%)
   gen split merge   : 722.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.6%)
   LB compute        : 166.38 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2548579587231526e-22,4.040713834661337e-23,-1.1282910517174554e-22)
    sum a = (-7.499360922596207e-26,-7.712736827733077e-26,3.466770352173868e-26)
    sum e = 7.857658609943337e-16
    sum de = 6.933347799794049e-33
Info: cfl dt = 49.439614343931375 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3696e+04 | 2592 |      1 | 4.827e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 560299.8306683027 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 532                                                     [SPH][rank=0]
Info: time since start : 47.425202745 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006276000000000001 s
sph::RenderFieldGetter compute custom field took :  0.000544926 s
rho_t_ampl=-0.00119946, rho_t_phi=3.14159 rad
eps_t_ampl=-3.6864e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-4.68295e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23688.08s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 23334.524354912373, dt = 49.439614343931375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.86 us   (4.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 230.34 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.283485408830085e-22,3.575201849502174e-23,-1.1065656763258713e-22)
    sum a = (2.0813171186382854e-25,6.736923544863498e-27,5.211140706604013e-26)
    sum e = 7.860608714953051e-16
    sum de = 2.1570415377137042e-32
Info: cfl dt = 49.44095650763085 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5517e+04 | 2592 |      1 | 5.695e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3125452.001425994 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23383.963969256303, dt = 49.44095650763085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (3.0%)
   patch tree reduce : 1.66 us    (1.0%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 151.95 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1099234691683252e-22,3.8158032116326764e-23,-1.0764892483429169e-22)
    sum a = (-1.5111550745732978e-25,4.9618761673054023e-26,-4.4784325164426695e-26)
    sum e = 7.860712195367952e-16
    sum de = 1.887411345499491e-32
Info: cfl dt = 49.442333032184976 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5636e+04 | 2592 |      1 | 5.680e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3133713.278167715 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23433.404925763934, dt = 49.442333032184976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (3.0%)
   patch tree reduce : 1.47 us    (0.9%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 154.63 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2831002861829066e-22,4.1671574225337967e-23,-1.1225847519519973e-22)
    sum a = (7.180932692181724e-26,2.066337906790478e-25,-4.017692904855649e-26)
    sum e = 7.860797355920491e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.443724490351606 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5295e+04 | 2592 |      1 | 5.722e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3110431.389225441 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23482.84725879612, dt = 49.443724490351606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.8%)
   patch tree reduce : 1.46 us    (0.8%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 154.02 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1911843477229805e-22,5.577012202892874e-23,-1.1413107199936616e-22)
    sum a = (1.8135365280220116e-25,1.81059435773361e-25,3.8646700098604275e-26)
    sum e = 7.860879126222291e-16
    sum de = 1.6562997521730228e-32
Info: cfl dt = 49.44509426191966 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5854e+04 | 2592 |      1 | 5.653e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3148874.500067158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23532.29098328647, dt = 49.44509426191966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (2.4%)
   patch tree reduce : 1.42 us    (0.8%)
   gen split merge   : 1.00 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.6%)
   LB compute        : 168.59 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0692288427831344e-22,6.408974905845486e-23,-1.1027151536862731e-22)
    sum a = (-1.6671096882093673e-25,-1.259763077644049e-25,-5.249670919292168e-26)
    sum e = 7.860957662600507e-16
    sum de = 2.1570415377137042e-32
Info: cfl dt = 49.446488205566254 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5380e+04 | 2592 |      1 | 5.712e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3116412.666491253 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23581.73607754839, dt = 49.446488205566254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.6%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 155.44 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2385544333259312e-22,5.0270101760455855e-23,-1.1512059051243972e-22)
    sum a = (-3.9219325827900325e-25,5.182440997181575e-26,6.697583852553529e-26)
    sum e = 7.861032817642111e-16
    sum de = -7.318533788671496e-33
Info: cfl dt = 49.447905615585405 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5845e+04 | 2592 |      1 | 5.654e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3148425.752082518 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23631.182565753956, dt = 49.447905615585405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.2%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 155.15 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.490681393012097e-22,5.722878659166167e-23,-1.0885502660970402e-22)
    sum a = (2.1789768003283964e-25,1.602793297231088e-25,-6.384183948628657e-26)
    sum e = 7.861104443146056e-16
    sum de = -7.318533788671496e-33
Info: cfl dt = 49.449345775560175 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5745e+04 | 2592 |      1 | 5.666e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3141638.281382729 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23680.630471369543, dt = 7.447282859684492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (2.7%)
   patch tree reduce : 1.43 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 157.99 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3181464470761464e-22,6.110315552460161e-23,-1.1256480494422756e-22)
    sum a = (-1.1081051687533915e-25,2.3474483701181849e-26,-5.354945139768875e-26)
    sum e = 7.857766398551337e-16
    sum de = 1.925929944387236e-33
Info: cfl dt = 49.44957036442196 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7427e+04 | 2592 |      1 | 5.465e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 490562.05080685025 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 540                                                     [SPH][rank=0]
Info: time since start : 48.061110313 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007178950000000001 s
sph::RenderFieldGetter compute custom field took :  0.0005812500000000001 s
rho_t_ampl=-0.00128554, rho_t_phi=3.14159 rad
eps_t_ampl=-3.20992e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-3.22782e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24041.63s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 23688.077754229227, dt = 49.44957036442196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.76 us   (4.5%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 232.63 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (75.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3884955172940786e-22,6.175511225328625e-23,-1.1517447714639018e-22)
    sum a = (-2.730334027636623e-25,5.560055429502884e-26,8.538588821372144e-26)
    sum e = 7.861157290534225e-16
    sum de = -4.622231866529366e-33
Info: cfl dt = 49.451030442205656 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6669e+04 | 2592 |      1 | 5.554e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3205221.9484587666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23737.527324593648, dt = 49.451030442205656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (1.5%)
   patch tree reduce : 831.00 ns  (0.5%)
   gen split merge   : 511.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 641.00 ns  (0.4%)
   LB compute        : 143.08 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5695031614679555e-22,6.529886116628106e-23,-1.0751691056287995e-22)
    sum a = (2.5010406286491864e-26,1.7284741147238513e-25,-5.504264156268282e-27)
    sum e = 7.861231787601286e-16
    sum de = -1.0400021699691074e-32
Info: cfl dt = 49.4525160868637 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.7158e+04 | 2592 |      1 | 5.496e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3238885.8034169795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23786.978355035855, dt = 49.4525160868637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (2.1%)
   patch tree reduce : 1.47 us    (0.9%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 147.99 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4793844620281956e-22,7.674551688473395e-23,-1.1003641612047703e-22)
    sum a = (-2.396109751146461e-25,-6.977919024611861e-26,5.789910247804725e-26)
    sum e = 7.861291783106624e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 49.454017969208856 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6863e+04 | 2592 |      1 | 5.531e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3218732.5169352153 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23836.43087112272, dt = 49.454017969208856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.4%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 741.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 152.04 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6607772288492508e-22,6.729551273160817e-23,-1.056053448619217e-22)
    sum a = (2.6616337637519235e-25,-8.163366837617746e-26,1.8808974561437403e-25)
    sum e = 7.861347330562018e-16
    sum de = -3.4666738998970245e-33
Info: cfl dt = 49.45553748294049 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6808e+04 | 2592 |      1 | 4.563e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3901939.7563138725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23885.88488909193, dt = 49.45553748294049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (2.1%)
   patch tree reduce : 1.03 us    (0.7%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.7%)
   LB compute        : 138.22 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.45 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4001133838172957e-22,6.296515833367804e-23,-9.308404019497902e-23)
    sum a = (-2.7480105553879784e-26,-2.593651412923615e-25,5.908021908481601e-26)
    sum e = 7.861398699165838e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 49.45707586839321 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9231e+04 | 2592 |      1 | 4.376e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4068470.0389563637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23935.34042657487, dt = 49.45707586839321 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (2.5%)
   patch tree reduce : 1.26 us    (0.8%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 139.92 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4918367609536324e-22,4.5742666614642626e-23,-9.33522230548627e-23)
    sum a = (-1.3085645153804615e-25,-2.5858405580467835e-25,5.122186111436358e-26)
    sum e = 7.861445788727415e-16
    sum de = -2.8888949165808538e-33
Info: cfl dt = 49.45863235477415 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8446e+04 | 2592 |      1 | 4.435e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4014651.293386801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23984.797502443264, dt = 49.45863235477415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (3.1%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 140.89 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.581634524854077e-22,3.297265404182799e-23,-9.101318556064837e-23)
    sum a = (-4.4830683148117744e-26,-3.7860756170627507e-26,-4.5561539532306284e-26)
    sum e = 7.861488506243664e-16
    sum de = 1.560003254953661e-32
Info: cfl dt = 49.46020616341826 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8842e+04 | 2592 |      1 | 4.405e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4042016.8454077165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24034.256134798037, dt = 7.375018748043658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.9%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 138.70 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.562378392495154e-22,3.8152177550043155e-23,-9.374259008420583e-23)
    sum a = (1.380649646281378e-25,-9.832392266534209e-26,5.737985310327381e-26)
    sum e = 7.857836757846602e-16
    sum de = -7.125940794232773e-33
Info: cfl dt = 49.46044515656269 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1523e+04 | 2592 |      1 | 5.031e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 527759.0410799072 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 548                                                     [SPH][rank=0]
Info: time since start : 48.635784782 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000718346 s
sph::RenderFieldGetter compute custom field took :  0.000549023 s
rho_t_ampl=-0.00133906, rho_t_phi=3.14159 rad
eps_t_ampl=-2.72672e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.69117e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24395.18s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 24041.63115354608, dt = 49.46044515656269 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.98 us   (5.4%)
   patch tree reduce : 2.05 us    (1.0%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 176.77 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4874720376189432e-22,3.3065662665506926e-23,-9.05249596563736e-23)
    sum a = (2.3079778432797756e-26,7.714607515233359e-26,1.5065448305208467e-25)
    sum e = 7.86151885411615e-16
    sum de = 8.281498760865114e-33
Info: cfl dt = 49.462035434674725 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8564e+04 | 2592 |      1 | 4.426e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4023083.1869534864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24091.091598702642, dt = 49.462035434674725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.7%)
   patch tree reduce : 1.32 us    (0.9%)
   gen split merge   : 852.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 133.91 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.499860149436517e-22,4.122065979259985e-23,-8.076657991770796e-23)
    sum a = (-1.8992864924328408e-26,3.5311724082547005e-26,1.3149098758868693e-25)
    sum e = 7.861556797428804e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 49.46364361477375 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8445e+04 | 2592 |      1 | 4.435e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4014994.0418797815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24140.553634137315, dt = 49.46364361477375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.6%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 132.00 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5220047016492786e-22,4.193353785930415e-23,-7.473648931490749e-23)
    sum a = (2.9523562308114456e-26,-3.5854909049906355e-26,-6.649430531676897e-26)
    sum e = 7.861585655384986e-16
    sum de = -6.066679324819793e-33
Info: cfl dt = 49.46526680617547 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8454e+04 | 2592 |      1 | 4.434e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4015759.4140039473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24190.01727775209, dt = 49.46526680617547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.7%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 862.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 130.95 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4945326194838816e-22,3.839938567112753e-23,-8.29221848531105e-23)
    sum a = (5.709142367352578e-26,1.5273115463034815e-25,-2.704201700234028e-26)
    sum e = 7.861609429949628e-16
    sum de = -5.585196838722984e-33
Info: cfl dt = 49.466837413041524 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9958e+04 | 2592 |      1 | 4.323e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4119189.5242639035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24239.482544558265, dt = 49.466837413041524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.6%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.7%)
   LB compute        : 132.07 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4608985749636293e-22,5.061955793851899e-23,-8.328410892769777e-23)
    sum a = (5.601328084613817e-26,-1.40229673273752e-25,-6.683452739687695e-27)
    sum e = 7.861628482440418e-16
    sum de = -7.2222372914521344e-34
Info: cfl dt = 49.46838442388414 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8341e+04 | 2592 |      1 | 4.443e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4008229.687490598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24288.949381971306, dt = 49.46838442388414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (3.1%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (1.0%)
   LB compute        : 133.25 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4328488088274647e-22,3.6436313240255764e-23,-8.311119164293555e-23)
    sum a = (8.542401425371206e-26,-7.394563245878842e-26,1.8349753288177923e-25)
    sum e = 7.861642779903694e-16
    sum de = -5.7777898331617076e-34
Info: cfl dt = 49.46994406542141 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9286e+04 | 2592 |      1 | 4.372e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4073335.0495423875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24338.41776639519, dt = 49.46994406542141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (3.1%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 912.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 134.16 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (56.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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3835210164346901e-22,3.44173779670719e-23,-6.932960590170663e-23)
    sum a = (-1.4968634138381598e-25,-7.934427987779578e-26,7.929400993991349e-26)
    sum e = 7.861652299835604e-16
    sum de = 1.1435209044799213e-33
Info: cfl dt = 49.47151556422328 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9072e+04 | 2592 |      1 | 4.388e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4058728.0239273394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24387.88771046061, dt = 7.2968424023238185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (2.7%)
   patch tree reduce : 1.60 us    (1.1%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.1%)
   LB compute        : 127.87 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (55.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4522814557330113e-22,3.370439960801157e-23,-7.132848123339875e-23)
    sum a = (8.047207917443172e-26,-1.7042070863497752e-25,1.1474102925222295e-25)
    sum e = 7.857862953735805e-16
    sum de = -1.4444474582904269e-34
Info: cfl dt = 49.47166447926652 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0106e+04 | 2592 |      1 | 4.312e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609141.6691092133 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 556                                                     [SPH][rank=0]
Info: time since start : 49.169112281000004 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008208190000000001 s
sph::RenderFieldGetter compute custom field took :  0.000712107 s
rho_t_ampl=-0.00135867, rho_t_phi=3.14159 rad
eps_t_ampl=-2.24903e-07, eps_t_phi=6.28319 rad
vx_t_ampl=-1.11865e-09, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24748.74s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 24395.184552862935, dt = 49.47166447926652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.88 us   (4.7%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 204.12 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4032264585486548e-22,2.494185646114122e-23,-6.552272587545501e-23)
    sum a = (-7.342654116289866e-26,1.1637341261570633e-26,3.9351076255827757e-26)
    sum e = 7.861657251085905e-16
    sum de = -5.7777898331617076e-34
Info: cfl dt = 49.471156076287436 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9443e+04 | 2592 |      1 | 4.361e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4084344.0106160077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24444.656217342203, dt = 49.471156076287436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (1.9%)
   patch tree reduce : 1.76 us    (0.9%)
   gen split merge   : 961.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.6%)
   LB compute        : 170.84 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4794967894669559e-22,3.0020861955519245e-23,-6.54408158701088e-23)
    sum a = (-2.5132010768185583e-25,2.538076323484611e-25,1.1649722506288739e-25)
    sum e = 7.861654374522881e-16
    sum de = -3.562970397116386e-33
Info: cfl dt = 49.4695823823362 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9977e+04 | 2592 |      1 | 4.322e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4120995.54278776 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 24494.12737341849, dt = 49.4695823823362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.6%)
   patch tree reduce : 1.30 us    (0.9%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 130.65 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6461104747025377e-22,4.856717516459711e-23,-5.776949221339316e-23)
    sum a = (3.5265299691178755e-26,8.536691421116419e-26,-1.5479081542268797e-25)
    sum e = 7.861648712304626e-16
    sum de = 2.792598419361492e-33
Info: cfl dt = 49.46801372591061 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0592e+04 | 2592 |      1 | 4.278e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4163127.583513039 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24543.596955800826, dt = 49.46801372591061 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.6%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.6%)
   LB compute        : 135.55 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.558687633793027e-22,4.8622686983663066e-23,-7.213693942944959e-23)
    sum a = (-8.023388482884608e-26,2.0358741036445255e-25,-4.8233848460593055e-26)
    sum e = 7.861637821225578e-16
    sum de = -5.488900341503622e-33
Info: cfl dt = 49.4663653401333 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0658e+04 | 2592 |      1 | 4.273e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4167558.955400544 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24593.064969526735, dt = 49.4663653401333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (2.5%)
   patch tree reduce : 1.14 us    (0.8%)
   gen split merge   : 752.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.6%)
   LB compute        : 127.48 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 742.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6258915357256686e-22,6.161495995399811e-23,-7.188731184700695e-23)
    sum a = (-2.2101927961446194e-26,-5.337570941249458e-26,1.1225635506252376e-25)
    sum e = 7.861622149811151e-16
    sum de = 4.525935369310004e-33
Info: cfl dt = 49.46473179012442 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9664e+04 | 2592 |      1 | 4.344e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4099136.6215588525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24642.531334866868, dt = 49.46473179012442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (2.1%)
   patch tree reduce : 941.00 ns  (0.7%)
   gen split merge   : 611.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.7%)
   LB compute        : 129.53 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 2.48 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6268864358975462e-22,5.262044058761636e-23,-6.236514783161741e-23)
    sum a = (-1.4979917028435652e-25,1.956506023920522e-25,3.791419799716374e-26)
    sum e = 7.86160174522076e-16
    sum de = -1.925929944387236e-34
Info: cfl dt = 49.46311386496863 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9456e+04 | 2592 |      1 | 4.360e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4084694.7246665824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24691.996066656993, dt = 49.46311386496863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.7%)
   patch tree reduce : 1.79 us    (1.1%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 141.88 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7297783698020583e-22,6.845650331335382e-23,-6.232845096894102e-23)
    sum a = (-2.7417422831357246e-26,-1.3909080655892066e-25,-3.8075324285815134e-26)
    sum e = 7.86157664984607e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 49.46151234404345 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9297e+04 | 2592 |      1 | 4.371e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4073620.4661305775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24741.45918052196, dt = 7.278771657827747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (2.2%)
   patch tree reduce : 901.00 ns  (0.6%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 142.60 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7026914102838398e-22,5.916707427404803e-23,-6.448493175684386e-23)
    sum a = (9.371067017119132e-26,-5.0010920455835637e-26,1.297990732420226e-25)
    sum e = 7.857844180877939e-16
    sum de = 4.622231866529366e-33
Info: cfl dt = 49.4612810008449 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9725e+04 | 2592 |      1 | 4.340e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 603786.5512462731 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 564                                                     [SPH][rank=0]
Info: time since start : 49.896667397 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000856092 s
sph::RenderFieldGetter compute custom field took :  0.000727409 s
rho_t_ampl=-0.00134389, rho_t_phi=3.14159 rad
eps_t_ampl=-1.78896e-07, eps_t_phi=6.28319 rad
vx_t_ampl=1.47014e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25102.29s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 24748.73795217979, dt = 49.4612810008449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.25 us   (5.3%)
   patch tree reduce : 1.82 us    (0.9%)
   gen split merge   : 1.20 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 185.54 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6587232413976324e-22,5.701821025361947e-23,-5.745394361815623e-23)
    sum a = (2.253443874685169e-25,1.655380183757338e-25,3.332292661748516e-26)
    sum e = 7.86155534822745e-16
    sum de = 1.7333369499485123e-33
Info: cfl dt = 49.45969593527317 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7073e+04 | 2592 |      1 | 4.542e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3920668.1874350747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24798.199233180632, dt = 49.45969593527317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (3.1%)
   patch tree reduce : 1.87 us    (1.2%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.0%)
   LB compute        : 140.84 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5043532469869324e-22,7.053481166131102e-23,-5.819171869901638e-23)
    sum a = (-1.5943977300832258e-25,-6.2321317450492e-27,8.526409818661867e-26)
    sum e = 7.861512019536868e-16
    sum de = 5.970382827600431e-33
Info: cfl dt = 49.45813241520593 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7899e+04 | 2592 |      1 | 4.477e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3977289.38447225 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 24847.658929115907, dt = 49.45813241520593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.5%)
   patch tree reduce : 1.37 us    (0.9%)
   gen split merge   : 1.13 us    (0.8%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.9%)
   LB compute        : 133.11 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6801617354239e-22,6.59776272953886e-23,-5.269021836447962e-23)
    sum a = (-1.0466761006813062e-25,-2.4245598718313774e-25,1.903096688586891e-25)
    sum e = 7.861472974235741e-16
    sum de = 5.970382827600431e-33
Info: cfl dt = 49.456587500064636 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9316e+04 | 2592 |      1 | 4.370e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4074524.5978422477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24897.117061531113, dt = 49.456587500064636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (1.8%)
   patch tree reduce : 631.00 ns  (0.4%)
   gen split merge   : 421.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.7%)
   LB compute        : 140.97 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.728494627644797e-22,4.814504463804134e-23,-4.06804727024925e-23)
    sum a = (1.4562450096435564e-25,8.636219831471733e-26,-1.514303304502289e-25)
    sum e = 7.861429076533506e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 49.455062115825555 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6870e+04 | 2592 |      1 | 4.558e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3906377.275772341 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24946.57364903118, dt = 49.455062115825555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (2.0%)
   patch tree reduce : 781.00 ns  (0.6%)
   gen split merge   : 470.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 692.00 ns  (0.5%)
   LB compute        : 125.04 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.16 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.577462362842977e-22,6.054940381729302e-23,-5.662011619017324e-23)
    sum a = (-2.7402378977951835e-25,1.2842602691398876e-25,-9.378435219823432e-26)
    sum e = 7.861380851287859e-16
    sum de = 7.703719777548943e-34
Info: cfl dt = 49.4535569880685 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9207e+04 | 2592 |      1 | 4.378e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4066761.234739231 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24996.028711147006, dt = 49.4535569880685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (2.3%)
   patch tree reduce : 550.00 ns  (0.4%)
   gen split merge   : 441.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.8%)
   LB compute        : 128.60 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8353661622368197e-22,6.79421539654229e-23,-5.983264327861485e-23)
    sum a = (7.392800294307896e-26,-1.6622272917753856e-25,-2.0870964785631845e-26)
    sum e = 7.861328394504125e-16
    sum de = -2.2725973343769383e-32
Info: cfl dt = 49.45207283169194 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9379e+04 | 2592 |      1 | 4.365e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4078455.8832487855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25045.482268135074, dt = 49.45207283169194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (1.8%)
   patch tree reduce : 451.00 ns  (0.3%)
   gen split merge   : 441.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 601.00 ns  (0.4%)
   LB compute        : 128.82 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 2.22 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7037825911175122e-22,5.2435050167483705e-23,-5.906184256945778e-23)
    sum a = (-1.62787030391026e-25,1.0176060086939406e-25,8.741419542936581e-26)
    sum e = 7.861271811826105e-16
    sum de = -5.007417855406813e-33
Info: cfl dt = 49.450610349947034 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9876e+04 | 2592 |      1 | 4.329e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4112458.438677827 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25094.934340966767, dt = 7.3570105298749695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (1.6%)
   patch tree reduce : 421.00 ns  (0.3%)
   gen split merge   : 411.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.2%)
   LB compute        : 123.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 1.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7790098815330384e-22,5.980603687435375e-23,-5.574127259844607e-23)
    sum a = (7.252390995857415e-26,-1.8615936084284688e-25,1.3207171087407366e-25)
    sum e = 7.857783312173184e-16
    sum de = -6.933347799794049e-33
Info: cfl dt = 49.45040033621658 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0457e+04 | 2592 |      1 | 4.287e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 617754.4631641789 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 572                                                     [SPH][rank=0]
Info: time since start : 50.433745151000004 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008540790000000001 s
sph::RenderFieldGetter compute custom field took :  0.000784595 s
rho_t_ampl=-0.00129509, rho_t_phi=3.14159 rad
eps_t_ampl=-1.35813e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.01485e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25455.84s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 25102.291351496642, dt = 49.45040033621658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.67 us   (4.8%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 218.20 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7270183241639461e-22,4.9542418034691735e-23,-4.9046000716951455e-23)
    sum a = (4.9669789326857525e-26,-3.62915333889774e-26,1.616210154688852e-25)
    sum e = 7.861226994844786e-16
    sum de = -3.4666738998970245e-33
Info: cfl dt = 49.448957546810384 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7524e+04 | 2592 |      1 | 4.506e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3950807.3914072094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25151.74175183286, dt = 49.448957546810384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.7%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.8%)
   LB compute        : 132.96 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.721113110240543e-22,5.145709940377611e-23,-4.0323397513435316e-23)
    sum a = (-1.687042793971534e-25,-1.3152607930974392e-25,1.8022648110240244e-25)
    sum e = 7.861147746159645e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 49.4475441446285 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8019e+04 | 2592 |      1 | 4.467e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3984723.141377281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25201.19070937967, dt = 49.4475441446285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.6%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 136.94 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8494873259666967e-22,4.2596971794482675e-23,-3.0951630192964214e-23)
    sum a = (-4.7538576761091303e-26,8.99979921045323e-26,1.9424731842165183e-25)
    sum e = 7.861079358357415e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 49.44615437176751 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7483e+04 | 2592 |      1 | 4.509e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3947781.0264253127 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25250.6382535243, dt = 49.44615437176751 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (3.1%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.8%)
   LB compute        : 133.93 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.840629505081592e-22,5.2526316211476516e-23,-2.1000199313853218e-23)
    sum a = (1.2160448169371983e-27,8.669588587039589e-26,4.230616984569996e-26)
    sum e = 7.861006957545944e-16
    sum de = 5.7777898331617076e-33
Info: cfl dt = 49.44478906193897 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7175e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3926483.4141340316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25300.084407896065, dt = 49.44478906193897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (3.3%)
   patch tree reduce : 1.73 us    (1.2%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (1.2%)
   LB compute        : 130.12 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8424267441017582e-22,5.673177528478048e-23,-2.2664832413759396e-23)
    sum a = (-3.1350136842421153e-25,-6.420052588336684e-26,1.1148960918776187e-26)
    sum e = 7.860931099712366e-16
    sum de = 2.6963019221421302e-33
Info: cfl dt = 49.44340984764038 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6581e+04 | 2592 |      1 | 4.581e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3885583.4751866353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25349.529196958003, dt = 49.44340984764038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.8%)
   patch tree reduce : 1.43 us    (1.0%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.8%)
   LB compute        : 133.86 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0505213477938534e-22,4.982514218635738e-23,-2.288387058125565e-23)
    sum a = (-2.1112794600040576e-25,8.486408124642872e-26,2.040486891645074e-25)
    sum e = 7.860851929495846e-16
    sum de = -1.1940765655200862e-32
Info: cfl dt = 49.44204153743981 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7734e+04 | 2592 |      1 | 4.490e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3964684.6003239304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25398.972606805644, dt = 49.44204153743981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (2.1%)
   patch tree reduce : 1.23 us    (0.7%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.9%)
   LB compute        : 161.94 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 692.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1292147420339855e-22,5.770431026126213e-23,-8.026476654352753e-24)
    sum a = (-3.001875581604249e-25,6.629216998054072e-26,-2.0409450482240695e-26)
    sum e = 7.860769608559899e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 49.44069969050811 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7118e+04 | 2592 |      1 | 4.538e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3922232.659523816 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25448.414648343085, dt = 7.4301024704109295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (2.4%)
   patch tree reduce : 1.11 us    (0.7%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 146.57 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1714498590078904e-22,5.773580206105745e-23,-1.3726955294707645e-23)
    sum a = (-8.247792629515287e-26,-1.9342223160637606e-26,-2.832750709779773e-26)
    sum e = 7.857684407693768e-16
    sum de = -2.311115933264683e-32
Info: cfl dt = 49.440508892132016 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9080e+04 | 2592 |      1 | 4.387e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 609679.9626292249 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 580                                                     [SPH][rank=0]
Info: time since start : 50.966766361000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007990660000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006871090000000001 s
rho_t_ampl=-0.0012135, rho_t_phi=3.14159 rad
eps_t_ampl=-9.67443e-08, eps_t_phi=6.28319 rad
vx_t_ampl=4.48317e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25809.40s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 25455.844750813496, dt = 49.440508892132016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.83 us   (5.9%)
   patch tree reduce : 2.09 us    (1.0%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 173.45 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2082932589212963e-22,5.646309206295989e-23,-1.515689764725673e-23)
    sum a = (-4.489336587064028e-26,3.06031742618112e-26,8.912631067063472e-26)
    sum e = 7.860705791173591e-16
    sum de = -3.004450713244088e-32
Info: cfl dt = 49.43918935016416 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7699e+04 | 2592 |      1 | 4.492e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3962019.6389278863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25505.285259705626, dt = 49.43918935016416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.5%)
   patch tree reduce : 1.34 us    (0.8%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 151.13 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.221387428925364e-22,5.921270729604444e-23,-7.847076837047954e-24)
    sum a = (2.839903426606016e-25,-5.672884330043449e-27,-7.30002295691865e-26)
    sum e = 7.860598546997536e-16
    sum de = -1.6948183510607676e-32
Info: cfl dt = 49.43790666858536 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6386e+04 | 2592 |      1 | 4.597e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3871806.894393377 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25554.72444905579, dt = 49.43790666858536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (2.2%)
   patch tree reduce : 952.00 ns  (0.6%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.9%)
   LB compute        : 149.41 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0177859227836843e-22,5.803597708267338e-23,-1.5463757734069542e-23)
    sum a = (2.1986591752004726e-25,1.0924511382209274e-25,-4.3022268606848057e-26)
    sum e = 7.860507769727096e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 49.4366521859071 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.6920e+04 | 2592 |      1 | 5.524e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3221722.1739064227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25604.162355724377, dt = 49.4366521859071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (2.8%)
   patch tree reduce : 1.75 us    (1.0%)
   gen split merge   : 1.09 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 158.91 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 762.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9030193739245028e-22,6.627379062276308e-23,-1.684961084535518e-23)
    sum a = (-2.49890941608342e-25,-1.2557166140799576e-25,-1.6272932369642476e-25)
    sum e = 7.860414197624175e-16
    sum de = -5.39260384428426e-32
Info: cfl dt = 49.435426653165415 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4604e+04 | 2592 |      1 | 5.811e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3062576.6839378285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25653.599007910285, dt = 49.435426653165415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (2.9%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 153.17 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1672135098889274e-22,5.426899618995906e-23,-2.785316241460152e-23)
    sum a = (1.5724587772003382e-25,-6.407374028288962e-26,1.4529398468995069e-25)
    sum e = 7.860318383994568e-16
    sum de = -1.0785207688568521e-32
Info: cfl dt = 49.43423063055034 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6134e+04 | 2592 |      1 | 5.618e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3167550.787262078 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25703.03443456345, dt = 49.43423063055034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (1.1%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 345.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.975165683162601e-22,5.261858517902969e-23,-1.3057034231615114e-23)
    sum a = (-6.030077906667963e-26,3.6687756754547584e-26,1.701118043516831e-25)
    sum e = 7.860220517185194e-16
    sum de = 0
Info: cfl dt = 49.43306466451698 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5646e+04 | 2592 |      1 | 5.679e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3133966.652248285 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25752.468665194003, dt = 49.43306466451698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.4%)
   patch tree reduce : 1.24 us    (0.7%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 154.18 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0604061624047673e-22,5.692353426952142e-23,-4.034461496432182e-24)
    sum a = (-8.504791791857685e-26,-8.64935871776298e-26,5.729378517180822e-26)
    sum e = 7.860120791953502e-16
    sum de = -5.3926038442842604e-33
Info: cfl dt = 49.431929286386136 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6111e+04 | 2592 |      1 | 5.621e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3165841.332639673 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25801.90172985852, dt = 7.496420271829265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (1.6%)
   patch tree reduce : 651.00 ns  (0.4%)
   gen split merge   : 450.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 600.00 ns  (0.4%)
   LB compute        : 137.37 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 1.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0917294710419488e-22,5.323217381325829e-23,-6.393433422562536e-24)
    sum a = (-1.700958358371537e-25,-1.1293595087762281e-25,1.3410375410967963e-25)
    sum e = 7.857557695177114e-16
    sum de = 3.8518598887744717e-32
Info: cfl dt = 49.43177075468051 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.8825e+04 | 2592 |      1 | 5.309e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 508353.3706753149 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 588                                                     [SPH][rank=0]
Info: time since start : 51.57097911 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007184860000000001 s
sph::RenderFieldGetter compute custom field took :  0.000548601 s
rho_t_ampl=-0.0011012, rho_t_phi=3.14159 rad
eps_t_ampl=-6.26763e-08, eps_t_phi=6.28319 rad
vx_t_ampl=5.838e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26162.95s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 25809.39815013035, dt = 49.43177075468051 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.70 us   (5.6%)
   patch tree reduce : 1.92 us    (0.9%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.6%)
   LB compute        : 184.30 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.176199704989758e-22,4.75508124285277e-23,5.234525120507311e-25)
    sum a = (7.718750451425083e-26,7.008310350859897e-26,-1.3498428943176918e-25)
    sum e = 7.86004443840882e-16
    sum de = 4.622231866529366e-32
Info: cfl dt = 49.430659960337316 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7189e+04 | 2592 |      1 | 4.532e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3926344.833085902 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25858.82992088503, dt = 49.430659960337316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (3.1%)
   patch tree reduce : 2.27 us    (1.4%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 138.16 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0475687408321518e-22,5.553769449381519e-23,-1.2799659239410633e-23)
    sum a = (-3.30839409473945e-26,-8.753020270134624e-26,5.877891885240336e-26)
    sum e = 7.859919929282045e-16
    sum de = 6.240013019814644e-32
Info: cfl dt = 49.429592286261986 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6540e+04 | 2592 |      1 | 4.584e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3881698.213471843 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25908.260580845366, dt = 49.429592286261986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.4%)
   patch tree reduce : 2.07 us    (1.1%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.78 us    (0.9%)
   LB compute        : 169.71 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 822.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.097634684965352e-22,4.7312918960010173e-23,-5.105319614768446e-24)
    sum a = (1.911572306047258e-25,-1.0296974079267839e-25,6.862289435013197e-26)
    sum e = 7.85981596179806e-16
    sum de = -1.5407439555097887e-33
Info: cfl dt = 49.428556616053456 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6621e+04 | 2592 |      1 | 4.578e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3887153.658793641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25957.69017313163, dt = 49.428556616053456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (3.0%)
   patch tree reduce : 1.20 us    (0.7%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 155.83 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.954882557077869e-22,4.1844979708924313e-23,-1.4700971485506126e-24)
    sum a = (9.824889928182293e-26,6.763896703898976e-26,-7.603146267354525e-26)
    sum e = 7.859710673162544e-16
    sum de = -2.311115933264683e-33
Info: cfl dt = 49.42755357591703 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7106e+04 | 2592 |      1 | 4.539e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3920356.112227589 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26007.118729747683, dt = 49.42755357591703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (3.1%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 140.11 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 842.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9250997390294013e-22,4.940341282922576e-23,-8.803174381250902e-24)
    sum a = (-2.8649765156150306e-25,1.2442520420723395e-25,7.160684868423819e-26)
    sum e = 7.859604580487185e-16
    sum de = -7.703719777548943e-34
Info: cfl dt = 49.426583615464914 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8118e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3989793.2417901303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26056.546283323598, dt = 49.426583615464914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (3.1%)
   patch tree reduce : 1.46 us    (1.0%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.9%)
   LB compute        : 132.51 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.162335289691333e-22,5.695622957758919e-23,-1.6151922150816928e-24)
    sum a = (-4.2448739692261377e-26,1.6742653127523307e-26,6.043890844633374e-26)
    sum e = 7.859497891843749e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 49.425647169721714 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6588e+04 | 2592 |      1 | 4.580e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3884676.8678249815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26105.972866939064, dt = 49.425647169721714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (3.1%)
   patch tree reduce : 1.64 us    (1.1%)
   gen split merge   : 1.05 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 136.90 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.113553087715395e-22,5.512288530925004e-23,1.0960433831269354e-24)
    sum a = (-3.9615480634242753e-26,8.48209379038175e-26,1.948290728742489e-25)
    sum e = 7.859390819073943e-16
    sum de = 5.3926038442842604e-33
Info: cfl dt = 49.424744657575864 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7070e+04 | 2592 |      1 | 4.542e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3917695.9038298316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26155.398514108787, dt = 7.553035338420159 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.6%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 140.72 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 702.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0891619867274257e-22,5.744926679986244e-23,5.888754680539768e-24)
    sum a = (-4.012947895892755e-26,1.83110727867911e-25,2.9200684180970954e-26)
    sum e = 7.857416247719648e-16
    sum de = -7.703719777548943e-33
Info: cfl dt = 49.42462282523574 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9613e+04 | 2592 |      1 | 4.348e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 625360.9034639575 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 596                                                     [SPH][rank=0]
Info: time since start : 52.116149622 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006688810000000001 s
sph::RenderFieldGetter compute custom field took :  0.000565807 s
rho_t_ampl=-0.000961026, rho_t_phi=3.14159 rad
eps_t_ampl=-3.44706e-08, eps_t_phi=6.28319 rad
vx_t_ampl=7.04505e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26516.50s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 26162.951549447207, dt = 49.42462282523574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.74 us   (4.4%)
   patch tree reduce : 1.98 us    (0.8%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 220.73 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1672135098889274e-22,6.686511435395167e-23,6.706488945995744e-24)
    sum a = (-1.0345156525119342e-25,-1.170659587578264e-25,1.3864814434758589e-25)
    sum e = 7.859309673715922e-16
    sum de = -9.244463733058732e-33
Info: cfl dt = 49.42374656457642 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6006e+04 | 2592 |      1 | 5.634e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3158062.7186643863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26212.37617227244, dt = 49.42374656457642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (2.8%)
   patch tree reduce : 1.92 us    (1.1%)
   gen split merge   : 972.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 159.85 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2283196365745764e-22,5.366222743594091e-23,1.6263699412847466e-23)
    sum a = (-2.345336745903207e-25,2.996851169627052e-26,1.1414928617358418e-25)
    sum e = 7.859180335204605e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 49.422918591535115 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5725e+04 | 2592 |      1 | 5.669e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3138782.414597878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26261.799918837016, dt = 49.422918591535115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.5%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 151.17 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3669637895588226e-22,5.877272473011425e-23,2.1299877611932158e-23)
    sum a = (-4.1329226268008885e-25,9.609790248176053e-26,3.290005895343074e-26)
    sum e = 7.859073678452408e-16
    sum de = 2.619264724366641e-32
Info: cfl dt = 49.42212562713139 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4892e+04 | 2592 |      1 | 4.722e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3767936.8788302285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26311.22283742855, dt = 49.42212562713139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (2.4%)
   patch tree reduce : 1.70 us    (1.2%)
   gen split merge   : 651.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.9%)
   LB compute        : 132.25 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 812.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.603172346494945e-22,6.51601443013387e-23,2.091808148740821e-23)
    sum a = (1.231088670342607e-25,6.034597918612362e-26,9.502589042732356e-26)
    sum e = 7.858967282611355e-16
    sum de = -1.771855548836257e-32
Info: cfl dt = 49.42136816274978 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8595e+04 | 2592 |      1 | 4.424e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4022090.5312514016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26360.64496305568, dt = 49.42136816274978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (2.2%)
   patch tree reduce : 1.17 us    (0.8%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 133.74 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.441677583111444e-22,6.726146974500617e-23,2.7149586327106764e-23)
    sum a = (2.9836975920727137e-27,1.883633931026686e-25,1.1051607909346542e-25)
    sum e = 7.858861598845146e-16
    sum de = 6.008901426488176e-32
Info: cfl dt = 49.4206465310663 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6858e+04 | 2592 |      1 | 4.559e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3902804.73718787 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 26410.06633121843, dt = 49.4206465310663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.8%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 701.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.9%)
   LB compute        : 151.60 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4260159287928533e-22,7.973101895568129e-23,3.2994135566462617e-23)
    sum a = (-1.2752173069984725e-25,-2.1302576336652947e-26,-2.577785368778975e-26)
    sum e = 7.858756834155904e-16
    sum de = -8.474091755303838e-33
Info: cfl dt = 49.4199610496631 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.5652e+04 | 2592 |      1 | 5.678e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3133550.897887098 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26459.486977749497, dt = 49.4199610496631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.4%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 153.40 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.59 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5577278741278867e-22,7.350065721400931e-23,2.835232790311533e-23)
    sum a = (-1.0781428273876192e-25,-1.3120953156100512e-25,2.087598482046378e-25)
    sum e = 7.858653196330641e-16
    sum de = 1.8488927466117464e-32
Info: cfl dt = 49.4193120193578 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2150e+04 | 2592 |      1 | 4.970e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3579539.6085123373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26508.90693879916, dt = 7.598009964902303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.5%)
   patch tree reduce : 2.16 us    (1.3%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 153.80 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5348772637286316e-22,6.97840230840251e-23,3.5733909356146467e-23)
    sum a = (2.145378861056317e-25,-7.716071744454784e-26,1.0598273740160946e-25)
    sum e = 7.857274709863455e-16
    sum de = 5.39260384428426e-32
Info: cfl dt = 49.41923036303197 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7945e+04 | 2592 |      1 | 4.473e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 611482.665652276 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 604                                                     [SPH][rank=0]
Info: time since start : 52.696619204 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00080159 s
sph::RenderFieldGetter compute custom field took :  0.000653819 s
rho_t_ampl=-0.000796523, rho_t_phi=3.14159 rad
eps_t_ampl=-1.28404e-08, eps_t_phi=6.28318 rad
vx_t_ampl=8.07383e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26870.06s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 26516.50494876406, dt = 49.41923036303197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.69 us   (5.4%)
   patch tree reduce : 2.13 us    (1.0%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 189.61 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.418570224280736e-22,6.617490235971152e-23,4.0581043914283927e-23)
    sum a = (3.745668767056661e-25,-1.9102892690706246e-25,4.707967961958853e-27)
    sum e = 7.858575511517675e-16
    sum de = 1.9259299443872359e-32
Info: cfl dt = 49.4186086170709 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8367e+04 | 2592 |      1 | 4.441e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4006163.752194834 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26565.924179127094, dt = 49.4186086170709 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (2.1%)
   patch tree reduce : 1.38 us    (1.0%)
   gen split merge   : 701.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.6%)
   LB compute        : 130.47 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1949423404857766e-22,5.392719984058818e-23,3.831124455991995e-23)
    sum a = (1.8408661950418373e-25,-2.0294329641965652e-25,1.2542343150035204e-25)
    sum e = 7.85845424910574e-16
    sum de = 8.474091755303838e-33
Info: cfl dt = 49.41803915504435 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7635e+04 | 2592 |      1 | 5.441e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3269526.489198485 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26615.342787744165, dt = 49.41803915504435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (1.8%)
   patch tree reduce : 892.00 ns  (0.6%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.5%)
   LB compute        : 136.18 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.152835597727598e-22,4.359929360070703e-23,4.7492219732080975e-23)
    sum a = (1.222313089189452e-25,-6.758372788976679e-27,2.16617583702957e-25)
    sum e = 7.858355663830297e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 49.41750686509901 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7956e+04 | 2592 |      1 | 4.472e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3977867.5040697027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26664.760826899208, dt = 49.41750686509901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.4%)
   patch tree reduce : 991.00 ns  (0.7%)
   gen split merge   : 691.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.7%)
   LB compute        : 134.70 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.130241735759795e-22,4.811686248599521e-23,6.045023875394962e-23)
    sum a = (-5.004588566199274e-26,9.485879238177012e-26,6.700489157682795e-26)
    sum e = 7.858258872014593e-16
    sum de = 1.771855548836257e-32
Info: cfl dt = 49.41701209695203 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7471e+04 | 2592 |      1 | 4.510e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3944533.063568438 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26714.178333764306, dt = 49.41701209695203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.9%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 140.01 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1556598304735733e-22,5.53102314303254e-23,6.006467717144231e-23)
    sum a = (-1.8272013615319243e-25,1.1325475128670227e-25,6.117598614205511e-26)
    sum e = 7.858164235728244e-16
    sum de = -1.1555579666323415e-32
Info: cfl dt = 49.41655506251966 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7593e+04 | 2592 |      1 | 4.501e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3952888.553653016 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26763.59534586126, dt = 49.41655506251966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.2%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 162.06 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2912230022803915e-22,6.136387804066184e-23,6.294376011394166e-23)
    sum a = (-2.0482833238689088e-25,-6.436452935034182e-26,5.992949054110189e-26)
    sum e = 7.858071940267123e-16
    sum de = 5.007417855406813e-32
Info: cfl dt = 49.416135958398606 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6632e+04 | 2592 |      1 | 4.577e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3886882.6378169185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26813.01190092378, dt = 49.416135958398606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.5%)
   patch tree reduce : 1.18 us    (0.7%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 162.70 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.41343525565169e-22,5.379340983763606e-23,6.587444520717761e-23)
    sum a = (-1.2560990766290988e-25,1.4566926034590687e-25,-3.033567453079825e-26)
    sum e = 7.85798216866619e-16
    sum de = 2.465190328815662e-32
Info: cfl dt = 49.41575496409852 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6941e+04 | 2592 |      1 | 4.552e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3908082.1819906207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26862.42803688218, dt = 7.63031119873267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.8%)
   patch tree reduce : 1.42 us    (1.0%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.9%)
   LB compute        : 130.94 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.400854582510527e-22,6.00973861686385e-23,6.341269673533877e-23)
    sum a = (6.64374176016359e-26,1.5832808513021e-25,-4.623275511742146e-26)
    sum e = 7.85714778829005e-16
    sum de = -1.8488927466117464e-32
Info: cfl dt = 49.4157158719341 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7922e+04 | 2592 |      1 | 4.475e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 613841.3184222609 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 612                                                     [SPH][rank=0]
Info: time since start : 53.245779600000006 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008043550000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006771640000000001 s
rho_t_ampl=-0.000611855, rho_t_phi=3.14159 rad
eps_t_ampl=1.667e-09, eps_t_phi=2.98063e-06 rad
vx_t_ampl=8.89832e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27223.61s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 26870.05834808091, dt = 49.4157158719341 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.43 us   (6.9%)
   patch tree reduce : 2.01 us    (1.0%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 180.23 us  (85.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.339748455824878e-22,6.796853085506038e-23,6.10674222084735e-23)
    sum a = (-7.814655016884564e-26,-7.175394085996335e-26,-1.9121538343183817e-26)
    sum e = 7.857915865543475e-16
    sum de = -4.622231866529366e-32
Info: cfl dt = 49.41536255085546 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6579e+04 | 2592 |      1 | 4.581e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3883183.328153024 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26919.474063952846, dt = 49.41536255085546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.6%)
   patch tree reduce : 1.90 us    (1.1%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 157.11 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4470693001719423e-22,5.874103234560686e-23,6.079238455124797e-23)
    sum a = (-4.2962738016946176e-26,-8.013324967667122e-26,1.1334546102665574e-25)
    sum e = 7.857814766155114e-16
    sum de = -2.0029671421627253e-32
Info: cfl dt = 49.41506428579787 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.9930e+04 | 2592 |      1 | 5.191e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3426798.0441400893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26968.8894265037, dt = 49.41506428579787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.2%)
   patch tree reduce : 1.68 us    (0.9%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 165.87 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.43346163330497e-22,5.456987325806723e-23,6.966631019430123e-23)
    sum a = (-1.6144562012904372e-25,1.5901896626251306e-25,1.1488670686978217e-26)
    sum e = 7.857734198363511e-16
    sum de = -3.0814879110195774e-33
Info: cfl dt = 49.41480449105546 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6200e+04 | 2592 |      1 | 4.612e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3857092.4001730285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27018.3044907895, dt = 49.41480449105546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.4%)
   patch tree reduce : 1.59 us    (0.9%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 154.02 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.570565295700502e-22,6.833720555584893e-23,6.771739068889184e-23)
    sum a = (-2.4722692590113423e-25,1.7602552344603165e-25,3.005549165522233e-26)
    sum e = 7.857656754294329e-16
    sum de = -2.7733391199176196e-32
Info: cfl dt = 49.414583370429845 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4943e+04 | 2592 |      1 | 5.767e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3084492.178312138 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27067.719295280553, dt = 49.414583370429845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (2.8%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 762.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 151.42 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.69046681318873e-22,7.745097253355756e-23,6.966130820110031e-23)
    sum a = (-1.6495585259030574e-25,-1.6871691388341182e-27,2.857600213061519e-26)
    sum e = 7.857582692695951e-16
    sum de = -8.16594296420188e-32
Info: cfl dt = 49.414401013294295 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5835e+04 | 2592 |      1 | 4.642e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3832054.997230797 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27117.133878650984, dt = 49.414401013294295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (2.0%)
   patch tree reduce : 1.71 us    (0.9%)
   gen split merge   : 961.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 165.37 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7502891977171174e-22,7.298274748743911e-23,7.103682005051789e-23)
    sum a = (-8.905961216001915e-26,-1.685511719503044e-25,-1.3679471354054703e-25)
    sum e = 7.857512158690879e-16
    sum de = 3.543711097672514e-32
Info: cfl dt = 49.41425749369383 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7133e+04 | 2592 |      1 | 4.537e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3921119.0652438984 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27166.54827966428, dt = 49.41425749369383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.7%)
   patch tree reduce : 1.88 us    (1.3%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 132.39 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.768261587918779e-22,6.052984680786598e-23,6.019136342183815e-23)
    sum a = (5.433965215478646e-26,-1.3554181364853633e-25,5.270283844792736e-26)
    sum e = 7.857445292340351e-16
    sum de = 6.008901426488176e-32
Info: cfl dt = 49.41415286850364 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7102e+04 | 2592 |      1 | 4.539e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3918987.2353595835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27215.96253715797, dt = 7.6492102397969575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (2.3%)
   patch tree reduce : 1.08 us    (0.7%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 131.92 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7456677259509757e-22,6.030719777746594e-23,6.527643892754436e-23)
    sum a = (7.327610262884458e-26,-4.37676478362756e-26,1.2487441155220214e-25)
    sum e = 7.85704872322277e-16
    sum de = -5.700752635386218e-32
Info: cfl dt = 49.41415755882477 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9300e+04 | 2592 |      1 | 4.371e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 630002.3608829136 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 620                                                     [SPH][rank=0]
Info: time since start : 53.811223398 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000765356 s
sph::RenderFieldGetter compute custom field took :  0.0006591370000000001 s
rho_t_ampl=-0.000411694, rho_t_phi=3.14159 rad
eps_t_ampl=8.68429e-09, eps_t_phi=5.76757e-07 rad
vx_t_ampl=9.49769e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27577.17s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 27223.61174739777, dt = 49.41415755882477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.78 us   (5.6%)
   patch tree reduce : 1.88 us    (0.9%)
   gen split merge   : 761.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 183.20 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (80.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.743100241636453e-22,5.849631899687889e-23,7.172303054306542e-23)
    sum a = (-1.8715180463553574e-25,2.673098580613926e-25,5.300113308468937e-26)
    sum e = 7.857397153207963e-16
    sum de = -8.320017359752859e-32
Info: cfl dt = 49.414080354890224 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7316e+04 | 2592 |      1 | 4.522e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3933631.8433775394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27273.025904956594, dt = 49.414080354890224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (2.1%)
   patch tree reduce : 1.20 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.6%)
   LB compute        : 145.18 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.824232745975382e-22,7.939744657950536e-23,7.256625403898252e-23)
    sum a = (2.942452360652885e-25,-1.2905735945989543e-26,1.0711749627473075e-25)
    sum e = 7.857326279585125e-16
    sum de = -6.933347799794049e-32
Info: cfl dt = 49.41405972189448 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8920e+04 | 2592 |      1 | 4.399e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4043738.429253066 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27322.439985311485, dt = 49.41405972189448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.5%)
   patch tree reduce : 1.83 us    (1.2%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 138.45 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6126720384586805e-22,7.182637662234337e-23,7.919641955674469e-23)
    sum a = (2.673104701973548e-26,-6.58260651735333e-26,9.14307379623465e-26)
    sum e = 7.857271868064652e-16
    sum de = 8.320017359752859e-32
Info: cfl dt = 49.41407798216104 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7683e+04 | 2592 |      1 | 4.494e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3958825.134049022 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27371.85404503338, dt = 49.41407798216104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.5%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 931.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 132.23 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.669670190241093e-22,6.726788845579248e-23,8.332681196633374e-23)
    sum a = (5.978678074199484e-25,9.443044412090713e-26,1.0023056773380556e-25)
    sum e = 7.85722157572197e-16
    sum de = -7.395570986446986e-32
Info: cfl dt = 49.414135191442426 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7774e+04 | 2592 |      1 | 4.486e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3965080.6925221244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27421.26812301554, dt = 49.414135191442426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.8%)
   patch tree reduce : 1.35 us    (0.9%)
   gen split merge   : 841.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 134.46 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.231143869320552e-22,7.589744393855902e-23,8.849703652793112e-23)
    sum a = (2.33330166317888e-25,-1.7674076758962767e-25,2.4054044978740615e-26)
    sum e = 7.857175554046355e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 49.41423131640201 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7260e+04 | 2592 |      1 | 4.527e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3929799.0742384302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27470.682258206984, dt = 49.41423131640201 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (3.2%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 1.13 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 137.00 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1597678053768103e-22,6.046204917518561e-23,8.780355017368725e-23)
    sum a = (1.1913791656245804e-25,6.196774771876332e-27,-1.2830380532498e-25)
    sum e = 7.857133893522334e-16
    sum de = -6.77927340424307e-32
Info: cfl dt = 49.4143663085384 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7691e+04 | 2592 |      1 | 4.493e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3959399.2834324255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27520.096489523385, dt = 49.4143663085384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.7%)
   patch tree reduce : 1.37 us    (0.9%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.9%)
   LB compute        : 133.81 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1808211767558996e-22,6.52831027298389e-23,7.769917590969219e-23)
    sum a = (-1.1188239143047451e-25,3.4838347100309435e-26,5.0282545742645906e-26)
    sum e = 7.857096677300864e-16
    sum de = -6.933347799794049e-32
Info: cfl dt = 49.4145401022939 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6678e+04 | 2592 |      1 | 4.573e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3889878.528695449 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27569.510855831923, dt = 7.65429088269957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (2.2%)
   patch tree reduce : 1.20 us    (0.7%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 148.67 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.236278837949598e-22,6.625714209166109e-23,8.249641882582053e-23)
    sum a = (-3.646253969135919e-25,-6.863253716184893e-26,6.28910837357318e-26)
    sum e = 7.856987915609315e-16
    sum de = 6.162975822039155e-32
Info: cfl dt = 49.414588578971276 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7260e+04 | 2592 |      1 | 4.527e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 608732.9297193936 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 628                                                     [SPH][rank=0]
Info: time since start : 54.518913439 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000818696 s
sph::RenderFieldGetter compute custom field took :  0.0006708150000000001 s
rho_t_ampl=-0.000201104, rho_t_phi=3.14159 rad
eps_t_ampl=8.03343e-09, eps_t_phi=6.3657e-07 rad
vx_t_ampl=9.85681e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27930.72s, niter_max = -1, max_walltime = -1.00s)   [SPH][rank=0]
---------------- t = 27577.165146714622, dt = 49.414588578971276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.07 us   (5.4%)
   patch tree reduce : 1.96 us    (1.0%)
   gen split merge   : 951.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.7%)
   LB compute        : 180.48 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3887874062322688e-22,6.247491676082929e-23,8.565241056260042e-23)
    sum a = (4.30473596923516e-27,-1.6970857414206913e-27,-5.905022365745004e-26)
    sum e = 7.8570716524770895e-16
    sum de = -6.162975822039155e-33
Info: cfl dt = 49.414788914504356 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7233e+04 | 2592 |      1 | 4.529e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3927955.373818999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27626.579735293595, dt = 49.414788914504356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.6%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 145.99 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3615720724983237e-22,6.404128277740044e-23,7.972161645739917e-23)
    sum a = (2.645054183644713e-26,1.0056314050026725e-25,-1.4902105462942042e-25)
    sum e = 7.857038039929125e-16
    sum de = -5.238529448733282e-32
Info: cfl dt = 49.41504606209755 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6779e+04 | 2592 |      1 | 4.565e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3896842.990190725 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27675.9945242081, dt = 49.41504606209755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (3.1%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 130.42 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3353837324901885e-22,7.154656094900277e-23,7.013478936819721e-23)
    sum a = (-8.77432749870459e-26,9.883908404835493e-26,2.0233139487821565e-25)
    sum e = 7.857015304296682e-16
    sum de = 4.468157470978387e-32
Info: cfl dt = 49.415341651641505 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7611e+04 | 2592 |      1 | 4.499e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3953959.506293874 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27725.4095702702, dt = 49.415341651641505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.8%)
   patch tree reduce : 1.08 us    (0.7%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (1.0%)
   LB compute        : 131.75 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.377490475248367e-22,7.63752367227148e-23,8.881411311118156e-23)
    sum a = (1.7281391539253716e-25,-1.5250741893618811e-25,5.795462013216439e-26)
    sum e = 7.856997249309175e-16
    sum de = 9.244463733058732e-33
Info: cfl dt = 49.41567559051453 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5183e+04 | 2592 |      1 | 5.737e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3101005.651301328 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27774.82491192184, dt = 49.41567559051453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (3.0%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 1.06 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 140.74 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2444947877560716e-22,6.263718979289563e-23,8.811076599326842e-23)
    sum a = (-8.156589268244996e-26,6.339677912236548e-26,1.5105757323634617e-25)
    sum e = 7.856983925938809e-16
    sum de = -3.8518598887744717e-32
Info: cfl dt = 49.416047723876915 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3705e+04 | 2592 |      1 | 5.931e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2999618.474699537 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27824.240587512355, dt = 49.416047723876915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (3.0%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 144.55 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3261407889579057e-22,7.109865528694574e-23,9.787580690494259e-23)
    sum a = (2.098770339190654e-25,-4.219884130707974e-26,-7.69446356550208e-26)
    sum e = 7.85697536100045e-16
    sum de = 0
Info: cfl dt = 49.415997834825845 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3422e+04 | 2592 |      1 | 5.969e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2980172.022340026 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27873.65663523623, dt = 49.415997834825845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (3.1%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.8%)
   LB compute        : 135.22 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1073911253605396e-22,6.641058939639626e-23,8.844002693814201e-23)
    sum a = (-6.542313279781812e-27,-1.0556860074807661e-26,-2.4831537739984054e-26)
    sum e = 7.856971572439358e-16
    sum de = -2.1570415377137042e-32
Info: cfl dt = 49.41554659236456 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4245e+04 | 2592 |      1 | 4.778e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3723013.2758166324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27923.072633071057, dt = 7.645912960415444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (3.1%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 1.17 us    (0.8%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 137.36 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1998205606833703e-22,6.711223471922452e-23,8.953777752877415e-23)
    sum a = (1.3356532456855912e-25,1.7937814313976337e-25,-2.647954216456875e-26)
    sum e = 7.856971846785213e-16
    sum de = 6.162975822039155e-33
Info: cfl dt = 49.41549705274632 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8142e+04 | 2592 |      1 | 4.458e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 617429.7875241676 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 636                                                     [SPH][rank=0]
Info: time since start : 55.103391368000004 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008174650000000001 s
sph::RenderFieldGetter compute custom field took :  0.000675902 s
rho_t_ampl=1.45899e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-2.69782e-10, eps_t_phi=6.28317 rad
vx_t_ampl=9.96661e-08, vx_t_phi=4.71239 rad
----- 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": {
            "ballabio_ts_limiter": false,
            "drag_mode": {
                "stopping_times": [
                    1.0
                ],
                "type": "constant_stopping_times"
            },
            "mode": {
                "C_1_fluid": 0.1,
                "C_drift": 1.0,
                "cfl_density_threshold": 2.220446049250313e-16,
                "dust_corrected_av": false,
                "ensure_s_j_positivity": true,
                "ndust": 1,
                "pure_diffusion_mode": false,
                "smooth_s_positivity_limiter": false,
                "type": "monofluid_tva"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs": 0.0031622776601683794,
            "eos_type": "isothermal"
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "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"
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null,
        "use_two_stage_search": true
    }
]
------------------------------------
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 = 2592 ( 2.6e+03 ) Ntotal = 2592 ( 2.6e+03 rank min = 7.6e+06 max = 2.6e+03) rate = 2.592000e+03 N.s^-1
SPH setup: the generation step took : 0.000625236 s
SPH setup: final particle count = 2592 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     : 5.18 us    (67.3%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 561.00 ns  (0.3%)
   patch tree reduce : 992.00 ns  (0.6%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 153.12 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (2.4%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         2592 / 2592 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.0030500270000000003 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.5% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.00460786 s
3.1622776601683796e-06
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (1.9%)
   patch tree reduce : 431.00 ns  (0.3%)
   gen split merge   : 490.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 380.00 ns  (0.3%)
   LB compute        : 136.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 1.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.183256172839506
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.030555555555555558 unconverged cnt = 2592
Warning: High interface/patch volume 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.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03361111111111112 unconverged cnt = 2592
Warning: High interface/patch volume 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.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03697222222222223 unconverged cnt = 2592
Warning: High interface/patch volume 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.5088734567901234
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.04066944444444446 unconverged cnt = 2592
Warning: High interface/patch volume 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.579861111111111
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.04473638888888891 unconverged cnt = 2592
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1840277777777777
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.049210027777777804 unconverged cnt = 2592
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.572759845179071e-24,0,0)
    sum a = (-1.3886572387181868e-22,-2.1843502497826586e-23,2.1030939179290755e-23)
    sum e = 7.856742013183861e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 0.015626727013107633 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    | 1.9959e+04 | 2592 |      1 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
[ 2.22044605e-16-9.99802608e-01j -1.40506697e-02-9.86960402e-05j
  1.40506697e-02-9.86960402e-05j  0.00000000e+00+0.00000000e+00j]
k=6.283185307179586 cs=0.0031622776601683794 ts=1 epsilon_0=0.5
eigenval = [-0.01404928-9.86960440e-05j  0.01404928-9.86960440e-05j
  0.        +4.42297751e-19j]
eigenvec = [[ 8.16483150e-01+0.00000000e+00j  8.16483150e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 4.02918285e-05-5.73550134e-03j  4.02918285e-05+5.73550134e-03j
   4.47213595e-01+2.04384070e-17j]
 [-5.77326527e-01-4.05571196e-03j  5.77326527e-01-4.05571196e-03j
  -1.38043796e-17+7.84561320e-16j]]
447.2246304615506
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 55.553027065 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008454560000000001 s
sph::RenderFieldGetter compute custom field took :  0.000757885 s
offset_rho=0.999981, ampl_rho=1.5987e-16, phi_rho=5.96884 rad
offset_eps=0.500009, ampl_eps=7.71362e-17, phi_eps=2.839 rad
offset_vx=0, ampl_vx=3.16228e-06, phi_vx=4.71239 rad
eigenval = [-0.01404928-9.86960440e-05j  0.01404928-9.86960440e-05j
  0.        +4.42297751e-19j]
eigenvec = [[ 8.16483150e-01+0.00000000e+00j  8.16483150e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 4.02918285e-05-5.73550134e-03j  4.02918285e-05+5.73550134e-03j
   4.47213595e-01+2.04384070e-17j]
 [-5.77326527e-01-4.05571196e-03j  5.77326527e-01-4.05571196e-03j
  -1.38043796e-17+7.84561320e-16j]]
eigenvec=[[ 8.16483150e-01+0.00000000e+00j  8.16483150e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 4.02918285e-05-5.73550134e-03j  4.02918285e-05+5.73550134e-03j
   4.47213595e-01+2.04384070e-17j]
 [-5.77326527e-01-4.05571196e-03j  5.77326527e-01-4.05571196e-03j
  -1.38043796e-17+7.84561320e-16j]]
v=[1.59870093e-16+0.j    7.71362122e-17+0.j    0.00000000e+00-0.001j]
c=[ 1.21675362e-05+8.65975542e-04j  1.21675362e-05-8.65975542e-04j
 -2.22144147e-05+2.12918321e-21j]
coefs=[ 1.21675362e-05+8.65975542e-04j  1.21675362e-05-8.65975542e-04j
 -2.22144147e-05+2.12918321e-21j]
coefs=[ 1.21675362e-05+8.65975542e-04j  1.21675362e-05-8.65975542e-04j
 -2.22144147e-05+2.12918321e-21j]
decomp=[1.59868998e-16+1.90439936e-21j 7.71342083e-17+1.86406343e-24j
 7.30172686e-22-1.00000000e-03j]
rho_t_ampl=-1.5987e-16, rho_t_phi=2.82724 rad
eps_t_ampl=-7.71362e-17, eps_t_phi=5.98059 rad
vx_t_ampl=3.16228e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.18s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 0, dt = 0.015626727013107633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.86 us   (4.6%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1.19 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 229.55 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.722992818085409e-23,-3.413424413729224e-25,3.2864474538405424e-25)
    sum a = (-7.420676742716286e-22,9.110973830695934e-23,3.457189824820694e-23)
    sum e = 7.856742013183864e-13
    sum de = -1.7165613297609217e-27
Info: cfl dt = 0.5313086680074991 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.4842e+04 | 2592 |      1 | 5.780e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 973.2351042620525 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.015626727013107633, dt = 0.5313086680074991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.5%)
   patch tree reduce : 1.49 us    (0.8%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 162.73 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.007037629169425e-22,4.894859595627272e-23,1.880279438956233e-23)
    sum a = (3.5798032627971086e-22,2.14470627152598e-22,5.324007717412172e-23)
    sum e = 7.856742013222172e-13
    sum de = -2.3224065049706588e-27
Info: cfl dt = 0.8750938074908906 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    | 4.4469e+04 | 2592 |      1 | 5.829e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32815.07208219748 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5469353950206067, dt = 0.8750938074908906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (1.8%)
   patch tree reduce : 701.00 ns  (0.4%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 146.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 2.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 692.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.54694444000689e-22,2.6940187766725113e-22,7.035213887460081e-23)
    sum a = (1.3638797614285887e-22,1.4452126154193806e-22,-4.854462370847051e-23)
    sum e = 7.856742138701952e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.1042793925347705 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    | 5.9130e+04 | 2592 |      1 | 4.384e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71866.72717501821 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4220292025114973, dt = 1.1042793925347705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (1.9%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 150.36 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (54.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.938964154327826e-22,3.983876777475808e-22,-2.7790269424853276e-23)
    sum a = (-3.3623052478030726e-22,-1.4926203576678867e-22,9.274976083193164e-23)
    sum e = 7.856743279380031e-13
    sum de = -1.7165613297609217e-27
Info: cfl dt = 1.257065126271388 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    | 5.8822e+04 | 2592 |      1 | 4.406e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90216.92887138735 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5263085950462676, dt = 1.257065126271388 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (1.8%)
   patch tree reduce : 1.15 us    (0.7%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.6%)
   LB compute        : 153.68 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9107921078815473e-22,4.8546245403546834e-23,1.6681645895140662e-22)
    sum a = (2.1035719924426865e-22,8.250121919484224e-23,-1.6060517762903485e-22)
    sum e = 7.856746921025182e-13
    sum de = -2.5748419946413825e-27
Info: cfl dt = 1.3589180412955908 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.3266e+04 | 2592 |      1 | 5.991e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75539.46533236656 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7833737213176555, dt = 1.3589180412955908 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (3.0%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 1.08 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 155.31 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8568046562630875e-22,3.063292739959055e-22,-2.1067464330813097e-22)
    sum a = (3.4894679318683107e-22,-1.2507484167518527e-22,-5.033867946247821e-23)
    sum e = 7.856754394388043e-13
    sum de = -1.7670484276950664e-27
Info: cfl dt = 1.4268163200763067 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.2753e+04 | 2592 |      1 | 6.063e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80691.99236847156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.1422917626132465, dt = 1.4268163200763067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.8%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 151.98 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.166654107634995e-22,-1.3169640001984813e-23,-2.0757712584177079e-22)
    sum a = (-9.257867034861233e-23,-2.110222315888715e-22,-1.236797073004863e-22)
    sum e = 7.856766545300469e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.4720787630409824 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.3298e+04 | 2592 |      1 | 5.986e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85802.37203097809 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.569108082689553, dt = 1.4720787630409824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (2.7%)
   patch tree reduce : 1.81 us    (1.1%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 149.00 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.530512540393942e-22,-3.851263078494565e-22,-4.419654841031716e-22)
    sum a = (2.0506818155635112e-22,2.1141074537133842e-22,2.1033271898445353e-22)
    sum e = 7.856783765558118e-13
    sum de = -1.0097419586828951e-27
Info: cfl dt = 1.5022512051358807 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    | 4.3997e+04 | 2592 |      1 | 5.891e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89954.04999694612 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.041186845730536, dt = 1.5022512051358807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (1.8%)
   patch tree reduce : 791.00 ns  (0.4%)
   gen split merge   : 551.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.6%)
   LB compute        : 165.96 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 1.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.92017561344078e-22,2.4339330073783395e-22,1.1985339613366167e-22)
    sum a = (-4.307917744230404e-23,-2.780244518617967e-22,8.068173463961793e-23)
    sum e = 7.856806142878931e-13
    sum de = 9.592548607487504e-28
Info: cfl dt = 1.5223641656239808 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.2722e+04 | 2592 |      1 | 6.067e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89136.80986153801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.543438050866417, dt = 1.5223641656239808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.0%)
   patch tree reduce : 1.12 us    (0.6%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.7%)
   LB compute        : 182.14 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.276985652146013e-22,-5.4748834938177965e-22,1.452962040298638e-22)
    sum a = (-1.4133359280370894e-22,4.7685943841741785e-23,-8.596954426497147e-23)
    sum e = 7.856833600696918e-13
    sum de = -2.069971015299935e-27
Info: cfl dt = 1.5357712931768945 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    | 4.1290e+04 | 2592 |      1 | 6.278e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87302.82963102161 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.065802216490397, dt = 0.11481354504836716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (1.5%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 661.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 211.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (77.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.09388888001378e-22,-2.9408787735866793e-22,8.57376830672271e-24)
    sum a = (-4.6044621825578187e-23,3.0821211254194844e-22,-1.2930525132460678e-22)
    sum e = 7.856762552239773e-13
    sum de = 1.0602290566170399e-27
Info: cfl dt = 1.5447137126635908 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    | 5.7421e+04 | 2592 |      1 | 4.514e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9156.481604021576 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 12                                                      [SPH][rank=0]
Info: time since start : 56.353786595 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000818225 s
sph::RenderFieldGetter compute custom field took :  0.000696373 s
rho_t_ampl=0.000216239, rho_t_phi=3.14159 rad
eps_t_ampl=-1.26527e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.12229e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.36s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 11.180615761538764, dt = 1.5447137126635908 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.85 us   (4.5%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 234.96 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.845064509429756e-22,1.9696847059052307e-22,-1.9365358961115368e-22)
    sum a = (-1.5274606058176402e-22,-2.936308200191226e-23,-9.22863237134472e-23)
    sum e = 7.856857077365834e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5506694599824253 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    | 5.5326e+04 | 2592 |      1 | 4.685e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118697.42984580234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.725329474202354, dt = 1.5506694599824253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (2.0%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.5%)
   LB compute        : 152.71 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4154892431033086e-22,-1.092928929438015e-22,-3.0816735081311727e-22)
    sum a = (1.2511030129131626e-22,-3.8627776438910646e-23,-9.101342361040523e-23)
    sum e = 7.856901075170876e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.5546397960377223 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.9812e+04 | 2592 |      1 | 5.204e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107280.79769880048 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.275998934184779, dt = 1.5546397960377223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (2.0%)
   patch tree reduce : 1.26 us    (0.7%)
   gen split merge   : 611.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.4%)
   LB compute        : 156.45 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.274639775756204e-22,-1.7653109486220731e-22,-4.486735174737794e-22)
    sum a = (3.775710339383702e-22,-1.463197777225756e-23,-1.4701575627019071e-22)
    sum e = 7.856943245343408e-13
    sum de = -3.07971297398283e-27
Info: cfl dt = 1.5572865776070532 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.8109e+04 | 2592 |      1 | 5.388e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103877.88068265845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.830638730222502, dt = 1.5572865776070532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.64 us    (2.0%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 162.45 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.429575266326448e-21,-1.8066464431623343e-22,-7.211509089220329e-22)
    sum a = (5.1763693136178335e-23,5.518163155679817e-23,-5.782936916086009e-23)
    sum e = 7.856989829555541e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5590514191308151 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    | 5.6215e+04 | 2592 |      1 | 4.611e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121586.32055972227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.387925307829555, dt = 1.5590514191308151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (2.0%)
   patch tree reduce : 1.26 us    (0.8%)
   gen split merge   : 782.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (1.0%)
   LB compute        : 151.58 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1140827937578525e-21,-4.027159322743064e-23,-7.418654872043973e-22)
    sum a = (4.249314914751415e-22,-5.21324054466004e-23,-2.0604860179895716e-23)
    sum e = 7.857040703657962e-13
    sum de = -1.1107161545511846e-27
Info: cfl dt = 1.5602287273637745 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    | 5.6240e+04 | 2592 |      1 | 4.609e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121779.02316523962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.94697672696037, dt = 1.5602287273637745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (2.3%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 152.08 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1180718601089554e-21,-2.0526074287994036e-22,-7.449963202037834e-22)
    sum a = (2.002637765327998e-22,-6.419465486286858e-23,-6.028727653489871e-23)
    sum e = 7.857095745888326e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.561014771320639 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    | 5.6121e+04 | 2592 |      1 | 4.619e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121612.74566129239 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.507205454324144, dt = 1.561014771320639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.3%)
   patch tree reduce : 1.24 us    (0.7%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 155.59 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1624379890639142e-21,-3.1488349738274443e-22,-8.700624723815871e-22)
    sum a = (-1.4231565555401403e-22,-3.2731914777707937e-24,1.027874415856982e-22)
    sum e = 7.857154833547603e-13
    sum de = 1.0097419586828951e-27
Info: cfl dt = 1.5615403952840217 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    | 5.6376e+04 | 2592 |      1 | 4.598e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122226.98470657482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.068220225644783, dt = 0.293011297432745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (2.1%)
   patch tree reduce : 1.23 us    (0.7%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 152.12 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9447153191923576e-21,-2.682888722766645e-22,-7.126635688551745e-22)
    sum a = (2.523772894068319e-22,-8.094804162308984e-23,2.5687824847249637e-23)
    sum e = 7.856840597495163e-13
    sum de = -4.543838814073028e-28
Info: cfl dt = 1.561890432390597 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.1474e+04 | 2592 |      1 | 6.250e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16878.21065668272 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 20                                                      [SPH][rank=0]
Info: time since start : 56.936127249 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000771415 s
sph::RenderFieldGetter compute custom field took :  0.0006982550000000001 s
rho_t_ampl=0.000427018, rho_t_phi=3.14159 rad
eps_t_ampl=-4.88376e-07, eps_t_phi=6.28319 rad
vx_t_ampl=3.0035e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 33.54s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 22.361231523077528, dt = 1.561890432390597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.23 us   (4.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 230.49 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3497616446515177e-21,-4.0610240396821993e-22,-6.83837530363384e-22)
    sum a = (-3.414625764099963e-22,5.778306483383945e-23,-3.785722975329141e-23)
    sum e = 7.857205668039947e-13
    sum de = -1.8175355256292112e-27
Info: cfl dt = 1.562126241659728 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    | 4.1925e+04 | 2592 |      1 | 6.182e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90948.28138611768 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.923121955468126, dt = 1.562126241659728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.2%)
   patch tree reduce : 1.48 us    (0.8%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 164.75 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3712420227004837e-21,-2.0749646008069614e-22,-7.926005088006865e-22)
    sum a = (-6.673533604524101e-23,-2.7474960556015133e-22,6.123831673659432e-23)
    sum e = 7.857285278756443e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5622863327519734 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.1597e+04 | 2592 |      1 | 6.231e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90250.29385264688 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.485248197127852, dt = 1.5622863327519734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (1.5%)
   patch tree reduce : 851.00 ns  (0.4%)
   gen split merge   : 570.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.6%)
   LB compute        : 177.54 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5807487427655665e-21,-8.964556022092422e-22,-6.1952884672066e-22)
    sum a = (-9.614586886810284e-23,-1.3651554801973673e-22,-3.167537411823956e-23)
    sum e = 7.857356420111478e-13
    sum de = -3.2311742677852644e-27
Info: cfl dt = 1.5623959939872984 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.1600e+04 | 2592 |      1 | 6.231e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90265.14181609549 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.047534529879826, dt = 1.5623959939872984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.7%)
   patch tree reduce : 1.96 us    (1.1%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.6%)
   LB compute        : 157.18 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3014064493454561e-21,-1.0017673900801923e-21,-7.415972190250791e-22)
    sum a = (4.1247919254970455e-22,1.8587212431869364e-22,-8.317374876034036e-23)
    sum e = 7.857431026686256e-13
    sum de = 1.8175355256292112e-27
Info: cfl dt = 1.5624724508518686 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    | 4.2267e+04 | 2592 |      1 | 6.133e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91718.14753591354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.609930523867124, dt = 1.5624724508518686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (2.2%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 691.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.5%)
   LB compute        : 151.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.373587899090292e-21,-4.595058771255878e-22,-9.117843372160338e-22)
    sum a = (-9.365540908301545e-23,2.8861808269899536e-23,9.578472983034798e-23)
    sum e = 7.857508975801059e-13
    sum de = 2.473867798773093e-27
Info: cfl dt = 1.5625271860739294 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.1109e+04 | 2592 |      1 | 6.305e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89211.01958172357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 30.17240297471899, dt = 1.5625271860739294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (2.3%)
   patch tree reduce : 1.63 us    (0.8%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.7%)
   LB compute        : 182.47 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8888468605083356e-21,-5.3708121218063e-22,-6.223092465231826e-22)
    sum a = (-1.3429868578191571e-22,1.1090200857713303e-22,-1.8078970222417114e-23)
    sum e = 7.857590114186505e-13
    sum de = 1.2621774483536189e-27
Info: cfl dt = 1.5625678528926192 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.0207e+04 | 2592 |      1 | 6.447e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87255.30501265397 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 31.73493016079292, dt = 1.5625678528926192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (2.9%)
   patch tree reduce : 1.26 us    (0.7%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 162.46 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6037534022236932e-21,-2.9967396100516424e-22,-7.395164276258674e-22)
    sum a = (1.384580103714431e-22,-7.510651334576966e-23,6.898907198223644e-23)
    sum e = 7.857674280748308e-13
    sum de = 1.2874209973206913e-27
Info: cfl dt = 1.562599551321692 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.1257e+04 | 2592 |      1 | 6.283e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89536.61458621068 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 33.29749801368554, dt = 0.24434927093075487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (2.5%)
   patch tree reduce : 1.59 us    (0.8%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.6%)
   LB compute        : 170.59 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.888025265527688e-21,-4.633619176304622e-22,-6.546341363031568e-22)
    sum a = (-1.9050091742682582e-22,1.4522616479926941e-22,2.3603111022885627e-23)
    sum e = 7.856945486790986e-13
    sum de = -6.310887241768094e-28
Info: cfl dt = 1.5626155729684432 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    | 4.1171e+04 | 2592 |      1 | 6.296e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13972.43339519577 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 28                                                      [SPH][rank=0]
Info: time since start : 57.615138952 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000667109 s
sph::RenderFieldGetter compute custom field took :  0.000573679 s
rho_t_ampl=0.000627019, rho_t_phi=3.14159 rad
eps_t_ampl=-1.07312e-06, eps_t_phi=1.2387e-11 rad
vx_t_ampl=2.80908e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 44.72s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 33.541847284616296, dt = 1.5626155729684432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.33 us   (4.4%)
   patch tree reduce : 1.96 us    (0.8%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 229.67 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (76.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4870869149717648e-21,-2.095115340981726e-22,-6.232965606837047e-22)
    sum a = (7.39820605229824e-23,1.865345051841338e-22,-8.834738418170664e-23)
    sum e = 7.857741187758915e-13
    sum de = -2.4233807008389483e-27
Info: cfl dt = 1.5626368297788218 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.1047e+04 | 2592 |      1 | 6.315e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89084.68185852336 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 35.104462857584736, dt = 1.5626368297788218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.7%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 157.43 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (54.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8370863767275502e-21,1.142402145747042e-22,-8.488192306248098e-22)
    sum a = (3.3847145718357694e-22,7.514487517195345e-23,-9.024803462324758e-23)
    sum e = 7.857847954635061e-13
    sum de = -7.825500179792437e-28
Info: cfl dt = 1.562656813398163 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.1763e+04 | 2592 |      1 | 6.206e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90640.29395374478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 36.66709968736356, dt = 1.562656813398163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (2.0%)
   patch tree reduce : 1.18 us    (0.8%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 144.37 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.53 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (54.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5329773253358845e-21,1.4465046160253345e-22,-9.913309500148773e-22)
    sum a = (-2.509587543230579e-22,5.615426682563586e-23,7.462573655795383e-23)
    sum e = 7.857940629272177e-13
    sum de = -2.0447274663328626e-27
Info: cfl dt = 1.562676004196607 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.1972e+04 | 2592 |      1 | 6.175e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91094.97934429672 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 38.229756500761724, dt = 1.562676004196607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (1.8%)
   patch tree reduce : 1.08 us    (0.6%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.8%)
   LB compute        : 175.64 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7302790292433903e-21,2.175694231515336e-22,-7.458945412567919e-22)
    sum a = (-5.662586655680641e-23,-1.5729000635668968e-23,3.4810602637718944e-23)
    sum e = 7.858035530005866e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.5626950644332762 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.1660e+04 | 2592 |      1 | 6.222e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90418.20896233935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 39.79243250495833, dt = 1.5626950644332762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (1.7%)
   patch tree reduce : 852.00 ns  (0.5%)
   gen split merge   : 761.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 157.97 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7853258929467652e-21,1.3682204145978294e-22,-7.226052615153895e-22)
    sum a = (7.648535772964239e-23,6.987182904173467e-23,-6.66841937383718e-23)
    sum e = 7.858132538435251e-13
    sum de = -1.9689968194316455e-27
Info: cfl dt = 1.5627144339497991 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.1433e+04 | 2592 |      1 | 6.256e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89926.86416914847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 41.355127569391605, dt = 1.5627144339497991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (2.0%)
   patch tree reduce : 1.35 us    (0.7%)
   gen split merge   : 711.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.8%)
   LB compute        : 171.09 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9825086883021373e-21,3.128936970389891e-22,-9.061163222679384e-22)
    sum a = (3.9962893355551654e-22,1.413084695685219e-22,1.1558073258730806e-22)
    sum e = 7.858231463857911e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.562734402655989 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    | 4.1168e+04 | 2592 |      1 | 6.296e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89351.70206595953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 42.917842003341406, dt = 1.562734402655989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (1.4%)
   patch tree reduce : 1.46 us    (0.7%)
   gen split merge   : 661.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.5%)
   LB compute        : 185.01 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 2.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.805746858910816e-21,5.895361202346089e-22,-5.830803195836027e-22)
    sum a = (2.3009794426755794e-22,-4.7767143040497475e-23,5.1991893541919946e-23)
    sum e = 7.858332109828054e-13
    sum de = 1.6408306828597046e-27
Info: cfl dt = 1.562755160274197 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.0467e+04 | 2592 |      1 | 6.405e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87832.41337637606 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 44.4805764059974, dt = 0.24188664015765937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (2.9%)
   patch tree reduce : 1.69 us    (1.0%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 157.03 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.803282073968874e-21,4.302574167500803e-22,-6.201904083398608e-22)
    sum a = (1.7439637206397983e-22,1.0444195226704947e-23,-1.2274144014814553e-22)
    sum e = 7.85708005949673e-13
    sum de = -7.573064690121713e-28
Info: cfl dt = 1.562759368597342 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.0742e+04 | 2592 |      1 | 6.362e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13687.545799869991 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 58.299180288 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006536980000000001 s
sph::RenderFieldGetter compute custom field took :  0.000566228 s
rho_t_ampl=0.000811212, rho_t_phi=3.14159 rad
eps_t_ampl=-1.86532e-06, eps_t_phi=2.78346e-11 rad
vx_t_ampl=2.5441e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 55.90s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 44.722463046155056, dt = 1.562759368597342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.82 us   (8.7%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 224.08 us  (85.6%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9996432743435985e-21,4.536255357064816e-22,-8.331385733515156e-22)
    sum a = (-2.7144727915295207e-22,-1.2249302182202128e-22,7.668868901007757e-23)
    sum e = 7.858410609688354e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5627805681025773 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    | 3.7396e+04 | 2592 |      1 | 6.931e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81168.08463542383 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 46.2852224147524, dt = 1.5627805681025773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (3.3%)
   patch tree reduce : 2.02 us    (1.2%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 151.70 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3752310890515866e-21,1.5833354832124486e-22,-5.574603290119943e-22)
    sum a = (-1.150746469769242e-22,-9.734200565236688e-23,-3.7348545111554074e-23)
    sum e = 7.858533490881613e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.562803285234225 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    | 3.8097e+04 | 2592 |      1 | 6.804e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82690.13008150266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 47.84800298285497, dt = 1.562803285234225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (1.0%)
   patch tree reduce : 1.75 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.3%)
   LB compute        : 426.51 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.297179565890085e-21,2.583932260912988e-23,-7.049363447737717e-22)
    sum a = (-2.141281918312244e-23,2.7651705775057475e-22,1.2769973496503358e-22)
    sum e = 7.858638375514436e-13
    sum de = -8.582806648804608e-28
Info: cfl dt = 1.5628270805577162 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    | 3.9791e+04 | 2592 |      1 | 6.514e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86369.21427194058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 49.410806268089196, dt = 1.5628270805577162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (1.4%)
   patch tree reduce : 611.00 ns  (0.4%)
   gen split merge   : 480.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 641.00 ns  (0.4%)
   LB compute        : 158.38 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 1.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (57.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2454190821093e-21,7.500937518433093e-22,-3.76394743627404e-22)
    sum a = (-9.82062750305076e-24,-9.380750244094413e-23,-1.8526957573274794e-23)
    sum e = 7.858744002064225e-13
    sum de = 6.563322731438818e-28
Info: cfl dt = 1.5628519651990136 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    | 4.0934e+04 | 2592 |      1 | 6.332e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88851.92266127556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 50.97363334864691, dt = 1.5628519651990136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (2.0%)
   patch tree reduce : 1.29 us    (0.7%)
   gen split merge   : 571.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.5%)
   LB compute        : 181.71 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.234738347360884e-21,3.1416700879122284e-22,-5.196131531796068e-22)
    sum a = (-6.644649405985717e-23,-5.440273604673314e-23,6.527770257761156e-24)
    sum e = 7.858850290182351e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.5628779441555039 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    | 3.9518e+04 | 2592 |      1 | 6.559e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85779.66160929839 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 52.53648531384593, dt = 1.5628779441555039 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (3.0%)
   patch tree reduce : 1.98 us    (1.2%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 152.00 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.146827684431614e-21,2.5990322780377767e-22,-4.89832629705003e-22)
    sum a = (-9.178756424419991e-24,-1.1638516719324736e-22,5.649414850655233e-23)
    sum e = 7.8589570315435e-13
    sum de = -1.2874209973206913e-27
Info: cfl dt = 1.562905016089412 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    | 3.9956e+04 | 2592 |      1 | 6.487e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86731.95038127879 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 54.09936325800143, dt = 1.562905016089412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.6%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 156.95 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.118893455089603e-21,2.954051171628455e-23,-3.6249196636729474e-22)
    sum a = (-2.0514199673039365e-23,-4.980057055912855e-23,-5.473298185612838e-23)
    sum e = 7.85906401480136e-13
    sum de = -1.5651000359584874e-27
Info: cfl dt = 1.562933175225479 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    | 3.9495e+04 | 2592 |      1 | 6.563e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85732.42254984894 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 55.66226827409084, dt = 0.2408105336029891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (2.8%)
   patch tree reduce : 1.50 us    (0.8%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 159.13 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1451844944703193e-21,6.959808105593424e-23,-4.625909649182036e-22)
    sum a = (-1.2728303489248142e-22,9.409484004098744e-23,6.001305569796491e-23)
    sum e = 7.857227300824604e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.562938046746408 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.0936e+04 | 2592 |      1 | 6.332e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13691.502212457124 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 44                                                      [SPH][rank=0]
Info: time since start : 59.188629359000004 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009135380000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008597380000000001 s
rho_t_ampl=0.000974976, rho_t_phi=3.14159 rad
eps_t_ampl=-2.84454e-06, eps_t_phi=3.88547e-11 rad
vx_t_ampl=2.21538e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 67.08s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 55.90307880769383, dt = 1.562938046746408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.97 us   (4.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 221.01 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.888025265527688e-21,2.3397805493788095e-22,-3.5497824960030023e-22)
    sum a = (2.9277023638506617e-22,-2.8190912583431933e-22,-2.0602557656706625e-23)
    sum e = 7.859146355552754e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.5629670336832453 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    | 5.5931e+04 | 2592 |      1 | 4.634e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121412.58854025566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 57.46601685444024, dt = 1.5629670336832453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.7%)
   patch tree reduce : 1.03 us    (0.7%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 136.22 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.737554475517083e-21,-5.004492285537479e-22,-4.501779726642224e-22)
    sum a = (-9.715360646155314e-23,-9.905499909346274e-23,1.1727083978287692e-22)
    sum e = 7.859272850159319e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.5629974937446107 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    | 5.8294e+04 | 2592 |      1 | 4.446e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126543.84466875768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 59.028983888123484, dt = 1.5629974937446107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (2.2%)
   patch tree reduce : 1.06 us    (0.6%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.9%)
   LB compute        : 148.47 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.326756985193391e-21,-5.1239284464937e-22,-1.591381564842762e-22)
    sum a = (4.294374264471295e-22,-4.9761556832630517e-23,8.747958177516142e-23)
    sum e = 7.859379410560157e-13
    sum de = -8.077935669463161e-28
Info: cfl dt = 1.5630290113024543 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    | 5.8116e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126160.11251291577 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 60.591981381868095, dt = 1.5630290113024543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.6%)
   patch tree reduce : 1.03 us    (0.7%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 132.14 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3389620013509678e-21,-5.516320283637654e-22,-4.568686307385671e-23)
    sum a = (-1.5689896646050508e-22,1.623497557187088e-22,6.04630363423663e-23)
    sum e = 7.85948513662923e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5630615675671489 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.4739e+04 | 2592 |      1 | 5.794e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97123.39239783527 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 62.15501039317055, dt = 1.5630615675671489 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (2.0%)
   patch tree reduce : 641.00 ns  (0.4%)
   gen split merge   : 431.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.7%)
   LB compute        : 136.52 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5978833288070277e-21,-1.321099054037848e-22,2.770676314298632e-23)
    sum a = (2.074398951918918e-22,-7.952531933345133e-23,-6.210664626565926e-25)
    sum e = 7.859590015870068e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.5630951468952903 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.9292e+04 | 2592 |      1 | 5.258e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107010.00187360415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 63.718071960737696, dt = 1.5630951468952903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.6%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.0%)
   LB compute        : 139.37 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.246943363518461e-21,-4.454858080905953e-22,-2.100312957264121e-23)
    sum a = (-2.39674660760729e-23,3.882407365276222e-23,-4.549302334704202e-23)
    sum e = 7.859693843277596e-13
    sum de = -1.4136387421560532e-27
Info: cfl dt = 1.5631297329524512 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    | 5.8338e+04 | 2592 |      1 | 4.443e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126649.75365081782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 65.28116710763298, dt = 1.5631297329524512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (2.2%)
   patch tree reduce : 1.15 us    (0.7%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 139.43 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.020183148859783e-21,-2.922326693567129e-22,-1.2718419602733743e-22)
    sum a = (3.1169259578310123e-22,9.58512099260689e-23,3.838205514567123e-23)
    sum e = 7.859796413819646e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.5631653087538708 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    | 5.7286e+04 | 2592 |      1 | 4.525e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124369.62353726369 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 66.84429684058543, dt = 0.23939772864716247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.3%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 148.91 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.389900890151106e-21,-2.2472387866172183e-22,-5.2441804681424964e-23)
    sum a = (-2.752343185168736e-23,6.52347116680515e-23,-1.0408715247377694e-22)
    sum e = 7.857372148304663e-13
    sum de = 1.1864468014524018e-27
Info: cfl dt = 1.5631711909954875 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    | 5.9395e+04 | 2592 |      1 | 4.364e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19748.504432096557 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 52                                                      [SPH][rank=0]
Info: time since start : 59.75285976400001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000840909 s
sph::RenderFieldGetter compute custom field took :  0.00066775 s
rho_t_ampl=0.00111422, rho_t_phi=3.14159 rad
eps_t_ampl=-3.98563e-06, eps_t_phi=2.84226e-11 rad
vx_t_ampl=1.83138e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 78.26s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 67.08369456923259, dt = 1.5631711909954875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.98 us   (5.2%)
   patch tree reduce : 2.09 us    (1.0%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.6%)
   LB compute        : 183.73 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (76.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2395490086926345e-21,-1.264566258787443e-22,-2.3220124513453723e-22)
    sum a = (1.3579424539512541e-22,2.6609758458963273e-22,-1.575422729504458e-22)
    sum e = 7.859874369628527e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.5632075503713807 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    | 5.6920e+04 | 2592 |      1 | 4.554e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123577.57487855629 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 68.64686576022808, dt = 1.5632075503713807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (3.1%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 134.57 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.64623852411309e-21,4.465336626264599e-22,-5.20252267883277e-22)
    sum a = (9.760291621659467e-23,6.606137141267871e-23,4.3904115677356484e-23)
    sum e = 7.859991658904676e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.5632451919859374 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    | 5.7356e+04 | 2592 |      1 | 4.519e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124527.3048712653 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 70.21007331059945, dt = 1.5632451919859374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (3.1%)
   patch tree reduce : 2.03 us    (1.3%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 133.59 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.737435566964949e-21,3.934717852337509e-22,-2.941681122933159e-22)
    sum a = (2.1607947991026196e-22,1.8301233793250349e-22,-1.9319656827208498e-23)
    sum e = 7.860089224275754e-13
    sum de = 1.1612032524853294e-27
Info: cfl dt = 1.5632837709398137 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    | 5.5844e+04 | 2592 |      1 | 4.642e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121246.6141169561 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 71.7733185025854, dt = 1.5632837709398137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (3.1%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 140.08 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.188491211340363e-21,7.710123302958861e-22,-3.7378734746506035e-22)
    sum a = (-7.036190763950486e-23,9.802314118838576e-23,9.141909253026205e-23)
    sum e = 7.860184445090122e-13
    sum de = 1.7165613297609217e-27
Info: cfl dt = 1.5633232632445504 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    | 5.1879e+04 | 2592 |      1 | 4.996e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112640.37787568221 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 73.33660227352522, dt = 1.5633232632445504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (3.0%)
   patch tree reduce : 1.38 us    (0.9%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 134.66 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.823703039932924e-21,8.577451597958687e-22,-1.4431170856527715e-22)
    sum a = (-6.228716947032978e-23,-1.7197486327366725e-22,1.1072271743727772e-22)
    sum e = 7.860277399455721e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5633636491700997 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    | 5.6886e+04 | 2592 |      1 | 4.556e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123516.3050952358 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 74.89992553676977, dt = 1.5633636491700997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (3.3%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 133.03 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.750991884145631e-21,3.7797862207330073e-22,4.387706595467727e-23)
    sum a = (2.190192494503909e-22,9.788378495967365e-23,3.073227466658452e-23)
    sum e = 7.860367906090504e-13
    sum de = -9.087677628146056e-28
Info: cfl dt = 1.563404908568176 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    | 5.7165e+04 | 2592 |      1 | 4.534e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124124.89317950817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 76.46328918593987, dt = 1.563404908568176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (3.0%)
   patch tree reduce : 1.72 us    (1.1%)
   gen split merge   : 812.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (1.1%)
   LB compute        : 135.82 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.305568496082615e-21,7.418842207476219e-22,2.939697976548619e-23)
    sum a = (-6.862885572720178e-23,-2.485413575193428e-22,1.5549991802717142e-22)
    sum e = 7.860455786712899e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.563447020851321 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    | 5.7462e+04 | 2592 |      1 | 4.511e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124771.94738157913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 78.02669409450804, dt = 0.23761623626330675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (2.6%)
   patch tree reduce : 1.32 us    (0.9%)
   gen split merge   : 1.13 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 134.74 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 742.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0812730663658795e-21,4.1198495181915883e-22,1.638774580563885e-22)
    sum a = (5.449485457575226e-23,6.043692593999858e-23,-7.948090119463104e-23)
    sum e = 7.857500126647326e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.563453759700516 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    | 5.9507e+04 | 2592 |      1 | 4.356e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19638.505262999097 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 60                                                      [SPH][rank=0]
Info: time since start : 60.305539161000006 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008883610000000001 s
sph::RenderFieldGetter compute custom field took :  0.000779307 s
rho_t_ampl=0.00122546, rho_t_phi=3.14159 rad
eps_t_ampl=-5.25938e-06, eps_t_phi=4.58393e-11 rad
vx_t_ampl=1.40189e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 89.44s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 78.26431033077135, dt = 1.563453759700516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.08 us   (5.7%)
   patch tree reduce : 2.26 us    (1.1%)
   gen split merge   : 781.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 183.82 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1527518296822015e-21,5.432283312667921e-22,1.1695115330529455e-23)
    sum a = (1.7267615757324938e-22,-7.518892858934229e-23,2.9576367794227954e-23)
    sum e = 7.860521616757066e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.5634965756250359 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    | 5.7421e+04 | 2592 |      1 | 4.514e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124687.6493729458 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 79.82776409047187, dt = 1.5634965756250359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.5%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 140.17 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.545474230431651e-21,3.196421690919433e-22,1.431906637079545e-22)
    sum a = (-1.9487205947230135e-23,1.477135405944087e-22,1.1196711473852379e-22)
    sum e = 7.860617839771594e-13
    sum de = 2.1835669856517607e-27
Info: cfl dt = 1.563540446170675 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    | 5.8231e+04 | 2592 |      1 | 4.451e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126448.92910422441 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 81.39126066609691, dt = 1.563540446170675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (2.5%)
   patch tree reduce : 1.04 us    (0.7%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 132.39 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.330216345502037e-21,7.248008219898639e-22,3.8266460159760843e-22)
    sum a = (-1.1218622712308574e-22,-5.0429253192940574e-23,5.109815216963304e-23)
    sum e = 7.860696670056421e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5635842538371365 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    | 5.8582e+04 | 2592 |      1 | 4.425e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127216.55843235241 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 82.95480111226759, dt = 1.5635842538371365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (3.0%)
   patch tree reduce : 1.46 us    (1.0%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 133.82 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.062787179301313e-21,4.91073096772649e-22,4.1497532528376685e-22)
    sum a = (1.2349599552855988e-23,7.369582613885549e-24,2.4019552293648133e-22)
    sum e = 7.860771858461296e-13
    sum de = 2.9030081312133234e-28
Info: cfl dt = 1.5636278627075135 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    | 5.8167e+04 | 2592 |      1 | 4.456e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126318.17974942952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 84.51838536610472, dt = 1.5636278627075135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.6%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 136.74 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2008151360500736e-21,5.477695691481048e-22,9.383865731317563e-22)
    sum a = (1.9433288776625152e-22,-1.0447946160820697e-22,1.4678888511816687e-22)
    sum e = 7.860843586632643e-13
    sum de = -1.2874209973206913e-27
Info: cfl dt = 1.5636722134840249 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    | 5.7537e+04 | 2592 |      1 | 4.505e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124954.09014700713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 86.08201322881224, dt = 1.5636722134840249 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (2.6%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 149.98 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6871993645933246e-21,2.9696486388391825e-22,1.094889663312038e-21)
    sum a = (-3.333878382408212e-23,1.3221165199898337e-22,-6.563946069203686e-23)
    sum e = 7.860911719000443e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5637172840319475 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    | 5.7053e+04 | 2592 |      1 | 4.543e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123905.71129614922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 87.64568544229627, dt = 1.5637172840319475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (2.7%)
   patch tree reduce : 731.00 ns  (0.5%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.9%)
   LB compute        : 136.78 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.466601112289502e-21,6.887790170571052e-22,8.261639532633347e-22)
    sum a = (8.531750377160177e-23,2.3382320354016126e-22,-3.2323562921080735e-23)
    sum e = 7.860976121843251e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.56376305185944 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    | 5.7893e+04 | 2592 |      1 | 4.477e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125734.68152935548 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 89.20940272632822, dt = 0.23552336598189072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.7%)
   patch tree reduce : 1.29 us    (0.9%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.7%)
   LB compute        : 130.13 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.529042330818703e-21,8.233216138489006e-22,8.4459932151246255e-22)
    sum a = (2.227164268633041e-22,1.0409443925338455e-22,-1.309964158646868e-22)
    sum e = 7.857598599753991e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.5637701754936866 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    | 6.0452e+04 | 2592 |      1 | 4.288e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19774.64960758413 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 60.848859004000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000819026 s
sph::RenderFieldGetter compute custom field took :  0.000719688 s
rho_t_ampl=0.00130596, rho_t_phi=3.14159 rad
eps_t_ampl=-6.63331e-06, eps_t_phi=3.09228e-11 rad
vx_t_ampl=9.37862e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 100.63s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 89.44492609231011, dt = 1.5637701754936866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.48 us   (4.7%)
   patch tree reduce : 2.29 us    (1.0%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.6%)
   LB compute        : 197.96 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (78.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9024572495229394e-21,9.70797912875106e-22,6.281311520590119e-22)
    sum a = (-2.4018815762363364e-22,1.3188830944312312e-22,-3.890217861558173e-23)
    sum e = 7.861023348016021e-13
    sum de = -1.6408306828597046e-28
Info: cfl dt = 1.563816558762897 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    | 5.8445e+04 | 2592 |      1 | 4.435e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126936.92451047829 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 91.0086962678038, dt = 1.563816558762897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (2.3%)
   patch tree reduce : 1.16 us    (0.8%)
   gen split merge   : 682.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.8%)
   LB compute        : 133.91 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 2.43 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.191366793772629e-21,1.1988868006665497e-21,6.393023917402012e-22)
    sum a = (-7.988727444638546e-23,7.197531077105692e-23,-7.288687658004368e-23)
    sum e = 7.861088773157086e-13
    sum de = 1.8932661725304283e-28
Info: cfl dt = 1.5638637427801163 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    | 5.7516e+04 | 2592 |      1 | 4.507e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124922.67941554761 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 92.5725128265667, dt = 1.5638637427801163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (2.5%)
   patch tree reduce : 1.21 us    (0.8%)
   gen split merge   : 832.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (1.0%)
   LB compute        : 132.83 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.190545198791981e-21,1.2646400739614856e-21,4.987443314211261e-22)
    sum a = (2.277358586981967e-22,5.861692055501224e-23,6.122221487764759e-23)
    sum e = 7.861141019763083e-13
    sum de = -2.7136815139602806e-28
Info: cfl dt = 1.5639115566380362 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    | 5.8569e+04 | 2592 |      1 | 4.426e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127213.66576949277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 94.13637656934681, dt = 1.5639115566380362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (3.1%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 139.25 us  (85.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.781066591132289e-21,1.345673088283227e-21,6.993546336456186e-22)
    sum a = (-2.1450047705683026e-22,1.4954919158693666e-22,-5.019596700860053e-24)
    sum e = 7.861188679505343e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.5639599708541607 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    | 5.7229e+04 | 2592 |      1 | 4.529e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124306.58363380125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 95.70028812598484, dt = 1.5639599708541607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (2.7%)
   patch tree reduce : 1.84 us    (1.2%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 132.83 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0757273002465096e-21,1.6507255277578929e-21,6.397060180052904e-22)
    sum a = (-1.7790098815330384e-22,-1.088469429826872e-22,-1.85916108244493e-22)
    sum e = 7.861232042328009e-13
    sum de = -2.8398992587956425e-28
Info: cfl dt = 1.564008961261321 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    | 5.7747e+04 | 2592 |      1 | 4.489e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125435.28063331151 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 97.264248096839, dt = 1.564008961261321 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (3.0%)
   patch tree reduce : 2.06 us    (1.2%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 150.78 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.833151382210369e-21,1.278417836664295e-21,2.074741072073579e-22)
    sum a = (2.647333076704742e-22,5.182767965932934e-23,-2.9101139126813173e-24)
    sum e = 7.861271024369103e-13
    sum de = -1.6408306828597046e-28
Info: cfl dt = 1.5640585034188346 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    | 5.8214e+04 | 2592 |      1 | 4.453e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126454.32103107554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 98.82825705810032, dt = 1.5640585034188346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.4%)
   patch tree reduce : 1.07 us    (0.7%)
   gen split merge   : 1.00 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 136.84 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.601548087860835e-21,1.4850618117186846e-21,3.460340263461877e-22)
    sum a = (1.255114707154605e-22,-4.5013917282595626e-23,4.2222806573588734e-23)
    sum e = 7.861305549720919e-13
    sum de = -6.310887241768095e-30
Info: cfl dt = 1.5641085726126922 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    | 5.8859e+04 | 2592 |      1 | 4.404e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127860.45937864792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 100.39231556151915, dt = 0.23322629232973213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.4%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 137.50 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.526372147131599e-21,1.398807176172282e-21,3.9117675901032353e-22)
    sum a = (-1.9528285696262505e-22,-1.2445448957519648e-22,1.17776979748776e-22)
    sum e = 7.857658048359086e-13
    sum de = 1.135959703518257e-28
Info: cfl dt = 1.564116163374542 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    | 6.0604e+04 | 2592 |      1 | 4.277e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19631.280950690983 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 76                                                      [SPH][rank=0]
Info: time since start : 61.37846999800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000847469 s
sph::RenderFieldGetter compute custom field took :  0.000690925 s
rho_t_ampl=0.00135375, rho_t_phi=3.14159 rad
eps_t_ampl=-8.07249e-06, eps_t_phi=1.84834e-11 rad
vx_t_ampl=4.51092e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 111.81s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 100.62554185384889, dt = 1.564116163374542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.74 us   (5.7%)
   patch tree reduce : 1.99 us    (1.0%)
   gen split merge   : 982.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.6%)
   LB compute        : 178.57 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.177399679101623e-21,1.1950355741947651e-21,5.842042465485198e-22)
    sum a = (-1.7663008341761492e-22,2.105436928803177e-22,-1.508062131387207e-22)
    sum e = 7.861329630457905e-13
    sum de = -5.679798517591285e-29
Info: cfl dt = 1.5641667393753238 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    | 5.7829e+04 | 2592 |      1 | 4.482e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125627.39732519795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 102.18965801722342, dt = 1.5641667393753238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.6%)
   patch tree reduce : 2.18 us    (1.4%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 140.30 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8999059743879694e-21,1.786388189581899e-21,1.382705272627324e-22)
    sum a = (-2.6665892090636654e-22,5.961929250741462e-24,7.64194992958901e-24)
    sum e = 7.861357649468434e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.5642178505216744 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    | 5.9202e+04 | 2592 |      1 | 4.378e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128613.61793519137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 103.75382475659875, dt = 1.5642178505216744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (3.0%)
   patch tree reduce : 1.42 us    (1.0%)
   gen split merge   : 802.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.9%)
   LB compute        : 131.55 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4246132780834575e-21,1.6355003457727711e-21,2.7414387504888646e-22)
    sum a = (-4.9501097584004877e-23,-3.9992379308226256e-23,-3.9703409275739335e-23)
    sum e = 7.861378162555763e-13
    sum de = 4.417621069237666e-29
Info: cfl dt = 1.56426941514775 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    | 5.9913e+04 | 2592 |      1 | 4.326e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130162.47174856075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 105.31804260712042, dt = 1.56426941514775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.7%)
   patch tree reduce : 1.39 us    (0.8%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 148.34 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.520739890819202e-21,1.53717853394811e-21,1.7500781823751286e-22)
    sum a = (-2.066824873191075e-23,-1.4684430674464418e-22,8.377217193306315e-23)
    sum e = 7.861393580364378e-13
    sum de = 8.204153414298523e-29
Info: cfl dt = 1.5643186483860132 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    | 5.9577e+04 | 2592 |      1 | 4.351e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129437.73844697881 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 106.88231202226817, dt = 1.5643186483860132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (3.0%)
   patch tree reduce : 1.46 us    (1.0%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 132.67 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5147833272095084e-21,1.2238908885346113e-21,4.026287266096171e-22)
    sum a = (-2.47017665900265e-22,6.197927193729909e-23,-1.073153060420826e-22)
    sum e = 7.861404279340008e-13
    sum de = 1.8932661725304283e-29
Info: cfl dt = 1.5643669219121206 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    | 6.0044e+04 | 2592 |      1 | 4.317e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130455.3674073225 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 108.44663067065417, dt = 1.5643669219121206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.9%)
   patch tree reduce : 1.38 us    (0.9%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 130.77 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.949590167631971e-21,1.484211332539499e-21,8.528735898747634e-23)
    sum a = (-2.602145352769136e-23,-1.0374742770149978e-22,5.1932058471603374e-23)
    sum e = 7.861410246317798e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.5643838816648246 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    | 5.9851e+04 | 2592 |      1 | 4.331e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130039.68089848095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 110.0109975925663, dt = 1.5643838816648246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.5%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 150.28 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.079761622378291e-21,1.1922305975811486e-21,2.9108968892577287e-22)
    sum a = (1.2105688542976296e-23,-4.312220286304351e-23,-3.237039041412851e-22)
    sum e = 7.861411320513445e-13
    sum de = -2.4454688061851366e-29
Info: cfl dt = 1.5643825238565856 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    | 6.0109e+04 | 2592 |      1 | 4.312e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130602.91193603232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 111.57538147423112, dt = 0.23077614115653944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.7%)
   patch tree reduce : 1.74 us    (1.2%)
   gen split merge   : 961.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 130.88 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1129977068297923e-21,1.229581075646673e-21,-7.743287159191771e-23)
    sum a = (-1.0653776163113498e-22,-2.8296134308767165e-23,1.5279224736095285e-23)
    sum e = 7.857672930968246e-13
    sum de = -2.0510383535746307e-29
Info: cfl dt = 1.5643823537370292 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    | 5.9488e+04 | 2592 |      1 | 4.357e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19067.205149126134 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 84                                                      [SPH][rank=0]
Info: time since start : 61.908102814 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00082165 s
sph::RenderFieldGetter compute custom field took :  0.000764164 s
rho_t_ampl=0.00136768, rho_t_phi=3.14159 rad
eps_t_ampl=-9.54037e-06, eps_t_phi=2.16946e-11 rad
vx_t_ampl=-4.60789e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 122.99s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 111.80615761538766, dt = 1.5643823537370292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.02 us   (6.0%)
   patch tree reduce : 1.94 us    (1.0%)
   gen split merge   : 1.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 173.96 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9344291727547124e-21,1.1872047470354697e-21,-1.441571283627147e-23)
    sum a = (-1.8639936123437521e-23,-1.061962661588322e-22,-5.12174087790776e-23)
    sum e = 7.861409752829975e-13
    sum de = 3.155443620884047e-29
Info: cfl dt = 1.564357976539681 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    | 6.0588e+04 | 2592 |      1 | 4.278e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131643.0417428628 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 113.37053996912469, dt = 1.564357976539681 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.4%)
   patch tree reduce : 1.68 us    (1.1%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 137.07 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.970579351903197e-21,9.602327149208435e-22,-1.4655115482447538e-22)
    sum a = (-4.685658874004611e-24,-8.080600257385377e-23,-4.291969483729844e-23)
    sum e = 7.861397123034574e-13
    sum de = -9.466330862652142e-30
Info: cfl dt = 1.5643088378546834 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    | 5.4492e+04 | 2592 |      1 | 4.757e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118395.41869216856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 114.93489794566437, dt = 1.5643088378546834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.5%)
   patch tree reduce : 1.93 us    (1.2%)
   gen split merge   : 912.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 140.20 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9784872035919283e-21,8.535280668092646e-22,-2.0720051528056373e-22)
    sum a = (-2.7930378115539264e-22,-1.583623322274272e-22,7.773627566903891e-23)
    sum e = 7.861383430707966e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.5642600667404332 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.5908e+04 | 2592 |      1 | 5.646e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99742.63772428603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 116.49920678351906, dt = 1.5642600667404332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (2.8%)
   patch tree reduce : 1.80 us    (1.2%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 136.62 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.326859684565972e-21,5.451988754781886e-22,8.770836987231545e-24)
    sum a = (1.198373303803645e-22,1.7516240507938324e-22,5.444652041318822e-23)
    sum e = 7.861364632447416e-13
    sum de = 5.36425415550288e-29
Info: cfl dt = 1.5642085712617302 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4682e+04 | 2592 |      1 | 4.740e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118802.13084807251 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 118.06346685025949, dt = 1.5642085712617302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (2.3%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 138.24 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (53.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8285461196237808e-21,1.0800957201443532e-21,7.572093383725017e-23)
    sum a = (2.0116239604288287e-23,-1.0485259931883912e-22,1.999502517192615e-23)
    sum e = 7.861341187835388e-13
    sum de = 2.8398992587956425e-28
Info: cfl dt = 1.5641575652180806 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8019e+04 | 2592 |      1 | 4.467e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126047.22847101688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 119.62767542152122, dt = 1.5641575652180806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (2.2%)
   patch tree reduce : 991.00 ns  (0.6%)
   gen split merge   : 721.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 149.39 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7765802370978337e-21,6.970398978390832e-22,8.005164165211715e-23)
    sum a = (-2.5092024205834006e-22,-9.55146789253899e-23,-8.716304746772903e-24)
    sum e = 7.861313162062316e-13
    sum de = 1.199068575935938e-28
Info: cfl dt = 1.5641070736726035 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4446e+04 | 2592 |      1 | 4.761e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118281.63314350657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 121.1918329867393, dt = 1.5641070736726035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (2.1%)
   patch tree reduce : 981.00 ns  (0.6%)
   gen split merge   : 691.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 159.82 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1688053501639316e-21,5.551093649322476e-22,4.3963885791492365e-23)
    sum a = (-1.8081508285028752e-22,-4.9134027560912904e-23,1.1460453188540272e-22)
    sum e = 7.86128061369959e-13
    sum de = -3.407879110554771e-28
Info: cfl dt = 1.5640571214165855 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.9971e+04 | 2592 |      1 | 5.187e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108556.03492412843 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 122.7559400604119, dt = 0.23083331651450578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (3.6%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 1.18 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 137.71 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1905776171510873e-21,5.799048446997543e-22,1.6686192642806611e-22)
    sum a = (-5.1478060506187647e-23,8.194742987790014e-23,4.341518289323653e-24)
    sum e = 7.857644021371429e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.5640498994193694 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8827e+04 | 2592 |      1 | 4.406e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18860.010111149943 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 92                                                      [SPH][rank=0]
Info: time since start : 62.47785824300001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008927970000000001 s
sph::RenderFieldGetter compute custom field took :  0.000766919 s
rho_t_ampl=0.00134747, rho_t_phi=3.14159 rad
eps_t_ampl=-1.09998e-05, eps_t_phi=2.36597e-11 rad
vx_t_ampl=-5.41067e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 134.17s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 122.98677337692641, dt = 1.5640498994193694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.91 us   (4.3%)
   patch tree reduce : 1.98 us    (0.8%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 228.52 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (82.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1156070751670133e-21,7.232860062442954e-22,1.6092608911312857e-22)
    sum a = (1.6620609710065123e-22,1.3793934845220263e-22,-1.180066900282162e-22)
    sum e = 7.861253774413926e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.5640004801482659 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6890e+04 | 2592 |      1 | 4.556e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123581.40491731653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 124.55082327634578, dt = 1.5640004801482659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (3.3%)
   patch tree reduce : 1.97 us    (1.3%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 135.83 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 640.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5510524149101268e-21,9.827880646239288e-22,-1.1931578220845746e-22)
    sum a = (-6.88085796292184e-23,-6.740097641225232e-23,-7.13244910608501e-23)
    sum e = 7.861202045815849e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5639517745301368 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8063e+04 | 2592 |      1 | 4.464e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126125.2341054176 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 126.11482375649405, dt = 1.5639517745301368 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (2.9%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 151.69 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2694507352932362e-21,7.168095270609109e-22,-1.943583557708012e-22)
    sum a = (-5.690828983140394e-23,-7.634454726176777e-23,-3.7726415447981265e-23)
    sum e = 7.861156167983171e-13
    sum de = 8.835242138475332e-29
Info: cfl dt = 1.5639036782514575 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8123e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126251.6238166935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 127.67877553102419, dt = 1.5639036782514575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (3.0%)
   patch tree reduce : 1.62 us    (1.1%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 135.79 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1870858384833357e-21,5.905278110510935e-22,-2.2708595066915106e-22)
    sum a = (-1.6695066755186292e-22,3.001113359698375e-22,-1.7974844498850393e-22)
    sum e = 7.861105678117058e-13
    sum de = 1.3757734187054446e-27
Info: cfl dt = 1.5638562208411673 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8168e+04 | 2592 |      1 | 4.456e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126346.93687327427 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 129.24267920927565, dt = 1.5638562208411673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.4%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 150.31 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8342107942952844e-21,1.3541810894304779e-21,-6.192410617466904e-22)
    sum a = (2.349248147788613e-23,8.585888190948441e-23,9.709333052953873e-23)
    sum e = 7.861051106417002e-13
    sum de = -4.796274303743752e-28
Info: cfl dt = 1.5638094254369752 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3909e+04 | 2592 |      1 | 4.808e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117091.53190553421 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 130.8065354301168, dt = 1.5638094254369752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (1.9%)
   patch tree reduce : 991.00 ns  (0.7%)
   gen split merge   : 601.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 641.00 ns  (0.4%)
   LB compute        : 141.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 1.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0178372724699746e-21,1.3206497442828065e-21,-2.5093522990129297e-22)
    sum a = (2.8948385646247664e-23,-2.1884253431905536e-22,-9.210096069216303e-23)
    sum e = 7.860992562136686e-13
    sum de = -3.9127500898962186e-28
Info: cfl dt = 1.5637633148444021 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7742e+04 | 2592 |      1 | 4.489e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125412.51635008112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 132.37034485555378, dt = 1.5637633148444021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (2.2%)
   patch tree reduce : 981.00 ns  (0.7%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 137.65 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 2.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.073705731153997e-21,7.405009885731725e-22,-5.428912414193364e-22)
    sum a = (4.6946450691054416e-23,2.2383197873949316e-23,3.2456503403405317e-23)
    sum e = 7.860930163813445e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.563717911505156 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6511e+04 | 2592 |      1 | 5.573e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101016.21380206624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 133.9341081703982, dt = 0.2332809680669925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (3.0%)
   patch tree reduce : 1.43 us    (0.9%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 149.50 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.102461555476655e-21,9.341920052607932e-22,-4.379305604140243e-22)
    sum a = (1.6144341369721093e-22,7.986972328407915e-23,-6.497550087694623e-23)
    sum e = 7.857574368322194e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.5637113917996992 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9259e+04 | 2592 |      1 | 4.374e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19200.00593141693 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 100                                                     [SPH][rank=0]
Info: time since start : 63.02973123300001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006910750000000001 s
sph::RenderFieldGetter compute custom field took :  0.0005915860000000001 s
rho_t_ampl=0.0012937, rho_t_phi=3.14159 rad
eps_t_ampl=-1.24139e-05, eps_t_phi=3.00555e-11 rad
vx_t_ampl=-1.02137e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 145.35s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 134.16738913846518, dt = 1.5637113917996992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.65 us   (5.6%)
   patch tree reduce : 1.77 us    (0.9%)
   gen split merge   : 781.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.6%)
   LB compute        : 182.67 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4089164832581293e-21,1.0657627389585283e-21,-5.508980074624638e-22)
    sum a = (1.5027485692903555e-22,6.952907991498143e-23,-1.1271514672225458e-22)
    sum e = 7.86088109205656e-13
    sum de = 8.582806648804608e-28
Info: cfl dt = 1.563666624249585 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6156e+04 | 2592 |      1 | 5.616e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100242.31139634651 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 135.73110053026488, dt = 1.563666624249585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.4%)
   patch tree reduce : 1.98 us    (1.1%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.6%)
   LB compute        : 170.19 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6171908108522413e-21,1.1664145427986191e-21,-7.64472434463972e-22)
    sum a = (-2.1765848276369367e-22,1.548371562051158e-22,4.5467101134929025e-23)
    sum e = 7.860795655153484e-13
    sum de = -3.660314600225495e-28
Info: cfl dt = 1.5636228209823089 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0214e+04 | 2592 |      1 | 6.445e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87336.0077563305 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 137.29476715451446, dt = 1.5636228209823089 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.4%)
   patch tree reduce : 1.57 us    (0.9%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 159.61 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9545744589601263e-21,1.4752251374386682e-21,-5.697068867639771e-22)
    sum a = (2.729235826338028e-23,7.301002700828092e-23,1.7656354628090963e-22)
    sum e = 7.860722370791154e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.5635797873412998 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2866e+04 | 2592 |      1 | 4.903e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114808.60302077368 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 138.85838997549678, dt = 1.5635797873412998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.0%)
   patch tree reduce : 1.26 us    (0.7%)
   gen split merge   : 991.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 164.69 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1944801933091623e-21,1.5254322932091669e-21,-1.911429979279414e-22)
    sum a = (-3.1519721187242526e-22,-1.0460628129241456e-22,3.550261767746154e-23)
    sum e = 7.8606454046101e-13
    sum de = 7.825500179792437e-28
Info: cfl dt = 1.5635375499904882 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7055e+04 | 2592 |      1 | 4.543e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123902.03646131333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 140.42196976283807, dt = 1.5635375499904882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.5%)
   patch tree reduce : 1.91 us    (1.1%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 154.78 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4086245943199396e-21,1.2227900796347595e-21,-2.459133304403849e-22)
    sum a = (-6.657486827558332e-23,-1.1463075300910861e-22,1.5082643295525592e-23)
    sum e = 7.86056530961766e-13
    sum de = -4.417621069237666e-28
Info: cfl dt = 1.5634951784897388 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6995e+04 | 2592 |      1 | 4.548e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123770.06762455346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 141.98550731282856, dt = 1.5634951784897388 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (3.3%)
   patch tree reduce : 1.88 us    (1.2%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 136.11 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5273450690234865e-21,1.0357745221648987e-21,-2.382953887267622e-22)
    sum a = (-4.262023962108304e-24,-8.952777687799547e-23,1.25499682356882e-22)
    sum e = 7.860482240370958e-13
    sum de = 3.9127500898962186e-28
Info: cfl dt = 1.5634528412477113 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6060e+04 | 2592 |      1 | 4.624e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121736.46054708818 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 143.5490024913183, dt = 1.5634528412477113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (3.0%)
   patch tree reduce : 2.06 us    (1.2%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 150.74 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5626736531913241e-21,9.15661187220723e-22,4.423570032746242e-23)
    sum a = (-1.385542910332377e-22,-8.654553352508527e-23,2.1575599598361616e-23)
    sum e = 7.86039636390003e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.563411363825246 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6299e+04 | 2592 |      1 | 4.604e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122250.59230949123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 145.11245533256601, dt = 0.23554956743791422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (3.2%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.7%)
   LB compute        : 141.47 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.449293545861985e-21,8.976952157298478e-22,-3.1922377751372337e-23)
    sum a = (3.463022843428723e-22,7.263011956361633e-23,1.1123671699171878e-22)
    sum e = 7.857469478307889e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5634054739599186 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8333e+04 | 2592 |      1 | 4.443e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19083.65525689731 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 108                                                     [SPH][rank=0]
Info: time since start : 63.811162027 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000915461 s
sph::RenderFieldGetter compute custom field took :  0.0007841450000000001 s
rho_t_ampl=0.0012078, rho_t_phi=3.14159 rad
eps_t_ampl=-1.37469e-05, eps_t_phi=3.29212e-11 rad
vx_t_ampl=-1.47488e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 156.53s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 145.34800490000393, dt = 1.5634054739599186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.95 us   (5.4%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.7%)
   LB compute        : 193.36 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0613818064442863e-21,1.029939914060145e-21,1.5254553320783382e-22)
    sum a = (1.7552606516236998e-22,4.0130983344268085e-24,1.2496981707420109e-23)
    sum e = 7.8603300376148e-13
    sum de = 7.825500179792437e-28
Info: cfl dt = 1.5633647150483316 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5252e+04 | 2592 |      1 | 4.691e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119973.73289626029 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 146.91141037396386, dt = 1.5633647150483316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (3.0%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 139.19 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1353253547025507e-21,9.82479966506186e-22,9.48977521335264e-23)
    sum a = (2.0212520266082903e-22,-2.0946695414591458e-22,5.0133570156309625e-23)
    sum e = 7.860219476762597e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.5633251595294109 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6041e+04 | 2592 |      1 | 4.625e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121685.0799762592 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 148.47477508901218, dt = 1.5633251595294109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.8%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.9%)
   LB compute        : 143.59 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.505864690974521e-21,4.881557927202722e-22,2.0269268088377884e-22)
    sum a = (-1.2062041309629405e-22,-5.7976503715544e-24,-5.311386616332306e-23)
    sum e = 7.8601262571081e-13
    sum de = -9.34011311781678e-28
Info: cfl dt = 1.5632865195165615 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7302e+04 | 2592 |      1 | 4.523e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124419.8617120806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 150.03810024854158, dt = 1.5632865195165615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.8%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 135.17 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.073705731153997e-21,6.383151128551542e-22,3.8955832483402015e-23)
    sum a = (2.549511924321413e-22,1.3798448001241887e-22,1.8625358320714424e-22)
    sum e = 7.860030627303991e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5632488191717044 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7092e+04 | 2592 |      1 | 4.540e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123959.62852890781 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 151.60138676805815, dt = 1.5632488191717044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (3.1%)
   patch tree reduce : 1.69 us    (1.1%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (1.0%)
   LB compute        : 138.79 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.730981715671904e-21,9.664075146972716e-22,5.1721647990460015e-22)
    sum a = (-8.761540223309991e-23,-3.9299359128017097e-23,1.0861830630321575e-22)
    sum e = 7.859933129236047e-13
    sum de = -1.6913177807938493e-27
Info: cfl dt = 1.5632120764589468 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7051e+04 | 2592 |      1 | 4.543e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123867.53462454543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 153.16463558722984, dt = 1.5632120764589468 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (2.6%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 136.22 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3555128095160497e-21,7.664518362822145e-22,6.26328300569134e-22)
    sum a = (1.1326457053518544e-22,1.0639183625310251e-22,5.277925824437712e-23)
    sum e = 7.859833954089264e-13
    sum de = 1.2621774483536189e-27
Info: cfl dt = 1.5631763088906805 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6811e+04 | 2592 |      1 | 4.562e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123343.92457754131 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 154.72784766368878, dt = 1.5631763088906805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (3.0%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 137.13 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.707977056213777e-21,1.0465130253103914e-21,6.651874495257754e-22)
    sum a = (2.247190646286321e-22,3.1100509168247404e-23,1.390616939014188e-22)
    sum e = 7.859733298703568e-13
    sum de = 6.563322731438818e-28
Info: cfl dt = 1.563141533478883 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6240e+04 | 2592 |      1 | 4.609e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122100.52290888304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 156.29102397257947, dt = 0.2375966889632366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (3.1%)
   patch tree reduce : 1.41 us    (1.0%)
   gen split merge   : 971.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 130.25 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8394322531173586e-21,9.95330225500374e-22,7.656653772045318e-22)
    sum a = (2.58365946570457e-22,-1.075483074105543e-22,-9.70883458990672e-24)
    sum e = 7.857340226020907e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.5631366968890066 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1039e+04 | 2592 |      1 | 4.246e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20142.623334138832 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 116                                                     [SPH][rank=0]
Info: time since start : 64.366237772 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000806287 s
sph::RenderFieldGetter compute custom field took :  0.00067391 s
rho_t_ampl=0.00109201, rho_t_phi=3.14159 rad
eps_t_ampl=-1.49655e-05, eps_t_phi=3.42042e-11 rad
vx_t_ampl=-1.89019e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 167.71s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 156.5286206615427, dt = 1.5631366968890066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.95 us   (6.0%)
   patch tree reduce : 2.33 us    (1.2%)
   gen split merge   : 982.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.7%)
   LB compute        : 171.60 us  (86.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2830935426669458e-21,8.105355419625757e-22,7.328154490806126e-22)
    sum a = (-3.350567030452612e-24,-2.3684441047339145e-23,-9.09190997640355e-23)
    sum e = 7.859656445958712e-13
    sum de = -1.1612032524853294e-27
Info: cfl dt = 1.5631027126462211 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7755e+04 | 2592 |      1 | 4.488e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125388.1239211638 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 158.09175735843172, dt = 1.5631027126462211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (2.4%)
   patch tree reduce : 1.15 us    (0.8%)
   gen split merge   : 862.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 130.22 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.04318780831791e-21,8.388613126625515e-22,5.272281847793462e-22)
    sum a = (6.038723107758272e-23,-1.4050808642117614e-22,9.977693478768242e-24)
    sum e = 7.859531823139218e-13
    sum de = 8.330371159133885e-28
Info: cfl dt = 1.563070132864315 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7768e+04 | 2592 |      1 | 4.487e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125413.24480201845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 159.65486007107793, dt = 1.563070132864315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.4%)
   patch tree reduce : 1.58 us    (1.0%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 149.73 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1787509801247283e-21,5.280352428356018e-22,6.216800450584282e-22)
    sum a = (9.376452716638269e-23,-7.947492242454321e-23,1.0358910003914176e-22)
    sum e = 7.859428104422009e-13
    sum de = -1.0349855076499675e-27
Info: cfl dt = 1.5630385903758022 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7378e+04 | 2592 |      1 | 4.517e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124564.21147320508 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 161.21793020394225, dt = 1.5630385903758022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.8%)
   patch tree reduce : 1.47 us    (1.0%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 130.06 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.358680280886505e-21,4.515177915520279e-22,8.567544028067633e-22)
    sum a = (2.0539874516184596e-22,1.7078940762532105e-22,-1.0885693828602147e-22)
    sum e = 7.859323458871481e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.5630081052246632 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7403e+04 | 2592 |      1 | 4.515e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124615.7355649947 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 162.78096879431806, dt = 1.5630081052246632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (3.0%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 762.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 136.21 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.76865617622955e-21,9.142169772938038e-22,5.205794478185876e-22)
    sum a = (2.1407684214493396e-22,1.5303786119165092e-22,7.856867585821847e-23)
    sum e = 7.859218384587832e-13
    sum de = 1.7165613297609217e-27
Info: cfl dt = 1.5629786916895572 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7538e+04 | 2592 |      1 | 4.505e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124905.4951208969 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 164.34397689954272, dt = 1.5629786916895572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (2.7%)
   patch tree reduce : 1.24 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 142.44 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.165486551882236e-21,1.1393404207019732e-21,7.898544910362467e-22)
    sum a = (-1.5790028534316907e-23,1.1236254108499714e-24,-7.78499671267342e-23)
    sum e = 7.85911308639061e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5629503635569968 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7811e+04 | 2592 |      1 | 4.484e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125496.09672962781 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 165.90695559123228, dt = 1.5629503635569968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (2.5%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 991.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 131.02 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.878749903636299e-21,1.0223529979107293e-21,5.459393536283332e-22)
    sum a = (4.1778104765919467e-22,2.7080159696479193e-22,9.389908903505269e-23)
    sum e = 7.859007772030527e-13
    sum de = -1.1107161545511846e-27
Info: cfl dt = 1.5629231340667165 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8709e+04 | 2592 |      1 | 4.415e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127444.43146898344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 167.46990595478928, dt = 0.23933046829216664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.5%)
   patch tree reduce : 1.44 us    (0.9%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 138.83 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.287082609018049e-21,1.2981136507120802e-21,7.02629891463784e-22)
    sum a = (-1.893904804607946e-22,-1.3675469514270472e-22,6.417914953019927e-23)
    sum e = 7.857199929426419e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.5629194917474118 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9592e+04 | 2592 |      1 | 4.350e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19808.678563966725 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 124                                                     [SPH][rank=0]
Info: time since start : 64.903249826 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008114260000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006499930000000001 s
rho_t_ampl=0.000949311, rho_t_phi=3.14159 rad
eps_t_ampl=-1.60389e-05, eps_t_phi=3.11871e-11 rad
vx_t_ampl=-2.25688e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 178.89s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 167.70923642308145, dt = 1.5629194917474118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.69 us   (5.7%)
   patch tree reduce : 1.92 us    (0.9%)
   gen split merge   : 982.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.8%)
   LB compute        : 177.63 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9025761580750735e-21,1.0356076356844547e-21,7.993802917083442e-22)
    sum a = (-4.1208123248095346e-24,5.2738584983026833e-23,1.9625675137786527e-22)
    sum e = 7.858928168116714e-13
    sum de = -6.563322731438818e-28
Info: cfl dt = 1.562893105856764 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8061e+04 | 2592 |      1 | 4.464e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126033.3256977417 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 169.27215591482886, dt = 1.562893105856764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (2.0%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 571.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 149.55 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (57.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0857918387594396e-21,1.2660072593589692e-21,1.209321944590381e-21)
    sum a = (-2.6934194201504314e-22,-8.388277147232795e-23,5.985814366111041e-23)
    sum e = 7.858801881011298e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5628682888111702 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4517e+04 | 2592 |      1 | 4.754e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118340.20405520545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 170.83504902068563, dt = 1.5628682888111702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.4%)
   patch tree reduce : 1.56 us    (0.8%)
   gen split merge   : 982.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.7%)
   LB compute        : 169.74 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.426051069299591e-21,1.0282582118341324e-21,1.196284117320888e-21)
    sum a = (2.0393527910256782e-22,2.8354404167624115e-23,-1.0864416804284735e-22)
    sum e = 7.858698090393513e-13
    sum de = -2.8272774843121063e-27
Info: cfl dt = 1.5628446040106463 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7314e+04 | 2592 |      1 | 4.522e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124408.65011762334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 172.3979173094968, dt = 1.5628446040106463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.5%)
   patch tree reduce : 1.89 us    (1.1%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 156.86 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.157270602075762e-21,1.160278255286909e-21,8.948167057612915e-22)
    sum a = (-2.0646425115237303e-22,-1.2734697126945442e-22,1.2947635745939136e-22)
    sum e = 7.858594919404844e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5628220669396464 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6055e+04 | 2592 |      1 | 5.628e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99966.77169904149 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 173.96076191350744, dt = 1.5628220669396464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.3%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.6%)
   LB compute        : 147.30 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.41044076466729e-21,8.394710901872507e-22,1.2832379035383828e-21)
    sum a = (1.6299674170749738e-22,-9.119739387510574e-23,2.0736957650196716e-22)
    sum e = 7.858492794308249e-13
    sum de = -7.068193710780266e-28
Info: cfl dt = 1.5628006878918181 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6863e+04 | 2592 |      1 | 4.558e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123426.34641653686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 175.52358398044709, dt = 1.5628006878918181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (2.2%)
   patch tree reduce : 1.92 us    (1.1%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 153.54 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.083327053817498e-21,7.250254768673847e-22,1.6681818411358229e-21)
    sum a = (-2.423063321831152e-22,9.861687193611922e-23,1.3984118869878291e-22)
    sum e = 7.858391913083299e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.562780476642079 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7195e+04 | 2592 |      1 | 4.532e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124145.8856593556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 177.0863846683389, dt = 1.562780476642079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (2.4%)
   patch tree reduce : 1.17 us    (0.8%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.8%)
   LB compute        : 131.87 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.42933744922218e-21,1.0274943852505618e-21,1.8339562152091445e-21)
    sum a = (-1.777982887807229e-22,-3.1242046755703296e-23,4.9157444601354613e-23)
    sum e = 7.858292473691847e-13
    sum de = 8.077935669463161e-28
Info: cfl dt = 1.5627614423874483 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8335e+04 | 2592 |      1 | 4.443e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126617.93668284724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 178.64916514498097, dt = 0.24068703963925486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.9%)
   patch tree reduce : 851.00 ns  (0.6%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.91 us    (1.3%)
   LB compute        : 134.15 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3644314457510368e-21,9.186779812902877e-22,1.7749283826142772e-21)
    sum a = (5.2312492908407646e-23,6.895936918651861e-23,5.019827322342034e-23)
    sum e = 7.857063042330792e-13
    sum de = -7.825500179792437e-28
Info: cfl dt = 1.5627591024937486 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8618e+04 | 2592 |      1 | 4.422e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19595.41034687855 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 132                                                     [SPH][rank=0]
Info: time since start : 65.461097937 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007878900000000001 s
sph::RenderFieldGetter compute custom field took :  0.000701951 s
rho_t_ampl=0.000783365, rho_t_phi=3.14159 rad
eps_t_ampl=-1.69403e-05, eps_t_phi=2.47988e-11 rad
vx_t_ampl=-2.5658e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 190.07s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 178.88985218462022, dt = 1.5627591024937486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.09 us   (5.4%)
   patch tree reduce : 1.85 us    (0.9%)
   gen split merge   : 1.03 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.7%)
   LB compute        : 179.35 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.48274112296426e-21,1.0385794987785152e-21,1.8535014480034896e-21)
    sum a = (-2.7742951760579083e-22,-1.6784362054382996e-22,8.967599249079699e-23)
    sum e = 7.858218162138925e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.562740942847623 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6334e+04 | 2592 |      1 | 4.601e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122272.75933746008 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 180.45261128711397, dt = 1.562740942847623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.6%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 882.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 139.48 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7942445291817523e-21,5.910926576002885e-22,2.0244888756252854e-21)
    sum a = (6.695357221197547e-23,-9.952787755217274e-24,-1.7064631773399434e-23)
    sum e = 7.858102710679251e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.5627244762146015 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7585e+04 | 2592 |      1 | 4.501e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124987.56469389627 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 182.0153522299616, dt = 1.5627244762146015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (3.4%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (1.0%)
   LB compute        : 137.62 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.150816750782717e-21,6.98997604628907e-22,1.9144175859737496e-21)
    sum a = (1.4650065498668663e-22,-2.5855369386095647e-25,-7.578803812849608e-23)
    sum e = 7.858009230476886e-13
    sum de = -1.2874209973206913e-27
Info: cfl dt = 1.5627092079859897 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6354e+04 | 2592 |      1 | 4.600e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122312.56985349244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 183.5780767061762, dt = 1.5627092079859897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.6%)
   patch tree reduce : 1.62 us    (0.9%)
   gen split merge   : 962.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 159.38 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 842.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.500816212538503e-21,7.060004180967687e-22,1.7500986687161504e-21)
    sum a = (-2.3344209258722426e-22,2.0501159159445777e-22,3.504025581503402e-23)
    sum e = 7.857917825440284e-13
    sum de = -1.2369338993865465e-27
Info: cfl dt = 1.562695148772616 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5629e+04 | 2592 |      1 | 4.659e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120738.41905503173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 185.1407859141622, dt = 1.562695148772616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.1%)
   patch tree reduce : 1.28 us    (0.7%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 164.29 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8073900488721105e-21,1.1866463191970609e-21,1.891452104215459e-21)
    sum a = (1.140797468050465e-22,2.840106769357879e-22,-5.56401605544384e-23)
    sum e = 7.857828829211134e-13
    sum de = 1.6155871338926322e-27
Info: cfl dt = 1.562682304691926 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8050e+04 | 2592 |      1 | 4.465e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125992.45379473832 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 186.7034810629348, dt = 1.562682304691926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (2.3%)
   patch tree reduce : 1.01 us    (0.7%)
   gen split merge   : 661.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.8%)
   LB compute        : 130.80 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2247602990409816e-21,1.6921454684619364e-21,1.733651286512441e-21)
    sum a = (-1.845700286602775e-22,9.241622180492293e-23,-6.93995540710102e-23)
    sum e = 7.857742413282991e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5626706813293838 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8335e+04 | 2592 |      1 | 4.443e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126610.3816253601 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 188.26616336762672, dt = 1.5626706813293838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.7%)
   patch tree reduce : 1.00 us    (0.7%)
   gen split merge   : 601.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.7%)
   LB compute        : 134.80 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7342680955944936e-21,1.6868564507740189e-21,1.6144518576822234e-21)
    sum a = (2.2141342857368364e-22,-4.39791508991936e-23,6.849710932438847e-23)
    sum e = 7.857658746224927e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.5626602836761807 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8348e+04 | 2592 |      1 | 5.361e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104934.10732457775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 189.8288340489561, dt = 0.2416338972028882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (2.5%)
   patch tree reduce : 1.38 us    (0.9%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 131.70 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1302768762665324e-21,1.5698947028259202e-21,1.738746617626057e-21)
    sum a = (-8.100413012320301e-24,-5.0980861151138887e-23,-3.181323934393403e-22)
    sum e = 7.856943663030366e-13
    sum de = 1.741804878727994e-27
Info: cfl dt = 1.5626593166377243 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9381e+04 | 2592 |      1 | 4.365e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19928.277107934144 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 140                                                     [SPH][rank=0]
Info: time since start : 66.01534978800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007951900000000001 s
sph::RenderFieldGetter compute custom field took :  0.000690494 s
rho_t_ampl=0.000598413, rho_t_phi=3.14159 rad
eps_t_ampl=-1.76472e-05, eps_t_phi=1.80784e-11 rad
vx_t_ampl=-2.80925e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 201.25s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 190.070467946159, dt = 1.5626593166377243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.80 us   (5.3%)
   patch tree reduce : 1.91 us    (0.9%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 194.77 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (74.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0834459623696316e-21,1.489699330261792e-21,1.194902672330776e-21)
    sum a = (-6.351314323051455e-23,-3.087304610475763e-23,3.2075778588310673e-23)
    sum e = 7.857597220883583e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5626498025910447 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6435e+04 | 2592 |      1 | 4.593e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122483.62185128471 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 191.63312726279673, dt = 1.5626498025910447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (3.2%)
   patch tree reduce : 1.96 us    (1.3%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 137.35 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (55.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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.865723292498075e-21,1.4568804620114008e-21,1.5186539128005551e-21)
    sum a = (9.529859904431021e-23,4.990878601129145e-23,-6.154413926935278e-23)
    sum e = 7.857503963034747e-13
    sum de = -2.9534952291474682e-27
Info: cfl dt = 1.562642063083725 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7698e+04 | 2592 |      1 | 4.492e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125224.93895569521 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 193.19577706538777, dt = 1.562642063083725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (2.9%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 139.57 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2822719476862987e-21,1.5978738631434355e-21,1.3493348789624831e-21)
    sum a = (-6.047645115751239e-22,-3.131325432848889e-23,3.681651081285369e-24)
    sum e = 7.857430097642038e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.5626355581590308 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7765e+04 | 2592 |      1 | 4.487e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125368.47855083314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 194.7584191284715, dt = 1.5626355581590308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (3.0%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (1.1%)
   LB compute        : 134.39 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6464763412173572e-21,1.4854308875888974e-21,1.4060502396549308e-21)
    sum a = (-4.15117282682877e-22,1.0986450922702902e-22,-3.4734216606445883e-23)
    sum e = 7.857359527890049e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.562630293364392 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7908e+04 | 2592 |      1 | 4.476e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125678.83885267677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 196.32105468663053, dt = 1.562630293364392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (3.0%)
   patch tree reduce : 1.78 us    (1.2%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 134.28 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.262791485255029e-21,1.7674112711421804e-21,1.3217585001460141e-21)
    sum a = (-2.8161451703846345e-22,5.451758333093893e-23,1.4357278809884013e-22)
    sum e = 7.857292483287558e-13
    sum de = -2.1204581132340797e-27
Info: cfl dt = 1.5626262705534348 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7553e+04 | 2592 |      1 | 4.504e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124907.67996306618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 197.8836849799949, dt = 1.5626262705534348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.7%)
   patch tree reduce : 1.47 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (1.0%)
   LB compute        : 133.54 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.98824908828238e-22,1.8096592255376575e-21,1.6854230741015001e-21)
    sum a = (1.3197511247727234e-22,2.790102003561861e-22,-3.2636134244119593e-23)
    sum e = 7.857229091927769e-13
    sum de = 3.0292258760486853e-27
Info: cfl dt = 1.5626234910468997 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7526e+04 | 2592 |      1 | 4.506e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124849.33731425978 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 199.44631125054835, dt = 1.5626234910468997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.7%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 145.59 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2940120945196295e-21,2.4208681227422344e-21,1.4967507384953445e-21)
    sum a = (1.7532708512799446e-22,3.7985115557976096e-23,1.1693057628344044e-22)
    sum e = 7.857169476390249e-13
    sum de = -1.9185097214975007e-27
Info: cfl dt = 1.5626219555686127 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8059e+04 | 2592 |      1 | 5.393e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104302.46131331283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 201.00893474159525, dt = 0.24214896610251913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (3.6%)
   patch tree reduce : 2.08 us    (1.4%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 131.98 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.421359316519974e-21,2.241728323407173e-21,1.6419235843227328e-21)
    sum a = (1.1617866523216912e-22,-6.508058738991309e-24,1.131272102864144e-22)
    sum e = 7.856854071195625e-13
    sum de = 2.2214323091023692e-27
Info: cfl dt = 1.5626223912375572 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7823e+04 | 2592 |      1 | 4.483e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19446.92233904792 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 148                                                     [SPH][rank=0]
Info: time since start : 66.56651807200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00083432 s
sph::RenderFieldGetter compute custom field took :  0.000709393 s
rho_t_ampl=0.000399169, rho_t_phi=3.14159 rad
eps_t_ampl=-1.81423e-05, eps_t_phi=2.12834e-11 rad
vx_t_ampl=-2.98122e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 212.43s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 201.25108370769777, dt = 1.5626223912375572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.40 us   (5.6%)
   patch tree reduce : 1.82 us    (0.9%)
   gen split merge   : 1.24 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 175.71 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6818049253851948e-21,2.2261693684611633e-21,1.818238205602734e-21)
    sum a = (1.0594724023879467e-22,1.4235713897977943e-22,3.537901677485159e-23)
    sum e = 7.857126921492362e-13
    sum de = 1.7670484276950664e-27
Info: cfl dt = 1.5626217263460607 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8527e+04 | 2592 |      1 | 4.429e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127022.53104882305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 202.81370609893534, dt = 1.5626217263460607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.7%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.9%)
   LB compute        : 129.88 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.40 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.823940857037192e-21,2.5648526431006883e-21,1.8127766918418403e-21)
    sum a = (-1.2762001720876256e-22,8.125716773748197e-23,1.8586054700961337e-23)
    sum e = 7.857064949311267e-13
    sum de = 1.3631516442219084e-27
Info: cfl dt = 1.562622873512533 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7212e+04 | 2592 |      1 | 4.531e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124166.95901228758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 204.3763278252814, dt = 1.562622873512533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.7%)
   patch tree reduce : 1.58 us    (1.0%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 134.87 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4443639759781008e-21,2.6442585142381007e-21,1.82869916235265e-21)
    sum a = (3.773560071270289e-23,-9.158613958364599e-23,5.738448801381612e-23)
    sum e = 7.857018004662385e-13
    sum de = 1.868022623563356e-27
Info: cfl dt = 1.5626252609979703 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2835e+04 | 2592 |      1 | 4.906e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114669.10738036974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 205.93895069879395, dt = 1.5626252609979703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.1%)
   patch tree reduce : 1.48 us    (0.8%)
   gen split merge   : 1.14 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.9%)
   LB compute        : 162.99 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6727673805980735e-21,2.3660459139163805e-21,1.9486832725878107e-21)
    sum a = (-1.0278602517653813e-22,1.5507015415300434e-22,6.274951294832353e-23)
    sum e = 7.856975220945018e-13
    sum de = -1.868022623563356e-27
Info: cfl dt = 1.562628889214837 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7117e+04 | 2592 |      1 | 4.538e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123961.42020750938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 207.50157595979192, dt = 1.562628889214837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (2.6%)
   patch tree reduce : 1.28 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.9%)
   LB compute        : 151.40 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3408430084165304e-21,2.800990594218162e-21,2.0509292360494338e-21)
    sum a = (-7.68255494013167e-23,-6.459529775214361e-23,-7.111435233362102e-23)
    sum e = 7.856936722371945e-13
    sum de = 6.563322731438818e-28
Info: cfl dt = 1.5626337557614784 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5906e+04 | 2592 |      1 | 5.646e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99630.1379239081 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 209.06420484900676, dt = 1.5626337557614784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.5%)
   patch tree reduce : 1.75 us    (1.1%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 149.00 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3112655891132246e-21,2.528509902628614e-21,1.8352137770177727e-21)
    sum a = (1.5942472915491717e-22,-1.756505217079385e-22,1.7270493889459796e-22)
    sum e = 7.856902581084783e-13
    sum de = 8.582806648804608e-28
Info: cfl dt = 1.5626398577137244 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5463e+04 | 2592 |      1 | 5.701e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98669.93128444717 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 210.62683860476824, dt = 1.5626398577137244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.4%)
   patch tree reduce : 1.00 us    (0.6%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 151.78 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5363826138106077e-21,2.1673418841046535e-21,2.2955895255484277e-21)
    sum a = (9.160463098679014e-23,1.421044053767047e-22,-5.1257923360743315e-23)
    sum e = 7.856872861701542e-13
    sum de = 1.5651000359584874e-27
Info: cfl dt = 1.5626471915605211 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5950e+04 | 2592 |      1 | 5.641e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99727.77353339824 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 212.18947846248196, dt = 0.24222100675459046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (2.6%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.9%)
   LB compute        : 151.97 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.59225107249463e-21,2.4499127890502766e-21,2.108187132143723e-21)
    sum a = (-1.4144431556477275e-22,4.1464555131798914e-23,-2.773699172387192e-23)
    sum e = 7.856803464500576e-13
    sum de = -1.2621774483536189e-27
Info: cfl dt = 1.5626490179748582 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6104e+04 | 2592 |      1 | 4.620e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18874.373559028518 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 156                                                     [SPH][rank=0]
Info: time since start : 67.14978584500001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000810013 s
sph::RenderFieldGetter compute custom field took :  0.000712818 s
rho_t_ampl=0.000190694, rho_t_phi=3.14159 rad
eps_t_ampl=-1.84134e-05, eps_t_phi=2.89755e-11 rad
vx_t_ampl=-3.07751e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 223.61s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 212.43169946923655, dt = 1.5626490179748582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.65 us   (5.5%)
   patch tree reduce : 1.94 us    (0.9%)
   gen split merge   : 841.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 186.46 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4082137968296159e-21,2.5026681730029396e-21,2.067692581135357e-21)
    sum a = (-5.292227043310687e-24,-8.760819685414595e-23,-1.3834777903046953e-23)
    sum e = 7.85685352702653e-13
    sum de = -8.077935669463161e-28
Info: cfl dt = 1.5626571879072273 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7273e+04 | 2592 |      1 | 4.526e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124302.86200340553 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 213.9943484872114, dt = 1.5626571879072273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (3.0%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 136.97 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5741759829203874e-21,2.2647458202868727e-21,2.056935706389571e-21)
    sum a = (-2.9814590666859886e-22,9.892417555035402e-23,-2.268040461692334e-23)
    sum e = 7.856828772873369e-13
    sum de = -1.868022623563356e-27
Info: cfl dt = 1.5626671630395526 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8893e+04 | 2592 |      1 | 4.401e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127818.68078683622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 215.55700567511863, dt = 1.5626671630395526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (2.3%)
   patch tree reduce : 811.00 ns  (0.6%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.4%)
   LB compute        : 129.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 1.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.328627227374664e-22,2.5647756185712526e-21,2.0145824417673033e-21)
    sum a = (4.253912316352108e-22,8.851769651779088e-23,6.337578316862845e-23)
    sum e = 7.85681333840056e-13
    sum de = -1.1107161545511846e-27
Info: cfl dt = 1.5626783540001186 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8697e+04 | 2592 |      1 | 4.416e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127393.71325138061 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 217.11967283815818, dt = 1.5626783540001186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (1.8%)
   patch tree reduce : 671.00 ns  (0.4%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.6%)
   LB compute        : 148.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 1.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.914316304908404e-21,2.6952551714353153e-21,2.1808569957068635e-21)
    sum a = (9.180641920713469e-23,1.388705096976833e-22,1.3364830177734002e-22)
    sum e = 7.856802490523734e-13
    sum de = 5.09919689134862e-27
Info: cfl dt = 1.562690756106027 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9573e+04 | 2592 |      1 | 4.351e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129296.19334086897 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 218.6823511921583, dt = 1.562690756106027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (1.6%)
   patch tree reduce : 350.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.5%)
   LB compute        : 134.68 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 1.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.958682433863363e-21,2.9515992241080853e-21,2.4446146333193145e-21)
    sum a = (-3.0886214491105165e-22,-9.558808666173604e-23,2.593991482677095e-23)
    sum e = 7.856796257384597e-13
    sum de = -1.3631516442219084e-27
Info: cfl dt = 1.5627043627977313 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8962e+04 | 2592 |      1 | 4.396e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127970.89621402512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 220.24504194826434, dt = 1.5627043627977313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (1.6%)
   patch tree reduce : 570.00 ns  (0.3%)
   gen split merge   : 561.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.6%)
   LB compute        : 147.39 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 1.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1699512524418747e-21,2.619148517642065e-21,2.4009936010684476e-21)
    sum a = (1.0296093504546502e-22,6.535895509236342e-23,3.476159778894898e-23)
    sum e = 7.856794648199896e-13
    sum de = 1.868022623563356e-27
Info: cfl dt = 1.5627191670139198 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7426e+04 | 2592 |      1 | 4.514e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124639.2101621893 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 221.80774631106206, dt = 1.5627191670139198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.7%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 133.61 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5330962338880183e-21,2.847160380904073e-21,2.4622090574350283e-21)
    sum a = (1.8922840801344032e-22,1.2543073536885147e-22,1.9484125097248465e-23)
    sum e = 7.856797663425819e-13
    sum de = 2.3728936029048035e-27
Info: cfl dt = 1.562709560434223 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7698e+04 | 2592 |      1 | 4.492e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125229.71424027467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 223.37046547807597, dt = 0.24184975269935194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.9%)
   patch tree reduce : 1.64 us    (1.1%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 135.26 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7384949790498644e-21,2.9243774716633546e-21,2.4549840885718383e-21)
    sum a = (-3.725010547560354e-22,1.2490492761924344e-22,9.358286426311281e-23)
    sum e = 7.856797018166309e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.562708246895685 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8913e+04 | 2592 |      1 | 4.400e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19788.917761006353 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 164                                                     [SPH][rank=0]
Info: time since start : 67.686811179 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000832616 s
sph::RenderFieldGetter compute custom field took :  0.0007162630000000001 s
rho_t_ampl=-2.17227e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-1.8454e-05, eps_t_phi=3.17453e-11 rad
vx_t_ampl=-3.09584e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 234.79s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 223.61231523077532, dt = 1.562708246895685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.76 us   (6.7%)
   patch tree reduce : 1.82 us    (0.8%)
   gen split merge   : 802.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 191.18 us  (86.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.711252671252078e-22,3.1194035801945272e-21,2.6101871831957027e-21)
    sum a = (-8.814895756721174e-23,4.7008719707608304e-24,-1.4432675639267266e-23)
    sum e = 7.856803438747138e-13
    sum de = 5.048709793414476e-28
Info: cfl dt = 1.5626960499907172 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6326e+04 | 2592 |      1 | 4.602e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122252.0970139078 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 225.175023477671, dt = 1.5626960499907172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (2.4%)
   patch tree reduce : 2.02 us    (1.2%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 145.41 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0450688153834722e-21,3.0330269891431846e-21,2.5032349104839755e-21)
    sum a = (3.281549842722839e-22,-2.6678443678994565e-23,1.1018099916406026e-22)
    sum e = 7.856818096726791e-13
    sum de = -2.3224065049706588e-27
Info: cfl dt = 1.5626856770895807 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.9737e+04 | 2592 |      1 | 5.211e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107950.46230709575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 226.7377195276617, dt = 1.5626856770895807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.8%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 137.50 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (54.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.980043903360195e-21,2.9663365840734477e-21,2.772779828460161e-21)
    sum a = (2.487089961924571e-23,1.858686516958659e-22,1.0118847865014848e-22)
    sum e = 7.856835596091702e-13
    sum de = 1.0097419586828951e-27
Info: cfl dt = 1.5626765405520082 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5988e+04 | 2592 |      1 | 5.636e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99812.4518443955 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 228.30040520475129, dt = 1.5626765405520082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (2.2%)
   patch tree reduce : 1.55 us    (0.8%)
   gen split merge   : 651.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.7%)
   LB compute        : 179.72 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7204198894756216e-21,3.422957250700591e-21,2.9238784487168963e-21)
    sum a = (2.2912550958343235e-22,-9.175854214367198e-23,-1.0808988033309248e-22)
    sum e = 7.856857624833837e-13
    sum de = 2.928251680180396e-27
Info: cfl dt = 1.562668644889363 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5752e+04 | 2592 |      1 | 5.665e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99299.76502570609 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 229.8630817453033, dt = 1.562668644889363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (2.4%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 161.11 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3579775944579917e-21,3.0627584575053618e-21,2.5914525908765382e-21)
    sum a = (8.610700519831761e-23,-1.349094160839973e-22,-3.496689813095679e-23)
    sum e = 7.856884133000403e-13
    sum de = -2.8272774843121063e-27
Info: cfl dt = 1.5626619935910804 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5480e+04 | 2592 |      1 | 5.699e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98708.04363561158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 231.42575039019266, dt = 1.5626619935910804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (2.5%)
   patch tree reduce : 1.19 us    (0.7%)
   gen split merge   : 1.20 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 151.62 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2938931859674956e-21,2.8181092958852445e-21,2.5939446438873345e-21)
    sum a = (-5.36925157274638e-23,-2.759020148771836e-23,6.031155829634333e-23)
    sum e = 7.85691506548735e-13
    sum de = -1.5146129380243427e-27
Info: cfl dt = 1.5626565895937599 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5617e+04 | 2592 |      1 | 5.682e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99005.4908988168 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 232.98841238378375, dt = 1.5626565895937599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (2.8%)
   patch tree reduce : 1.89 us    (1.1%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.6%)
   LB compute        : 152.42 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0884944408056498e-21,2.8590285771479558e-21,2.762634909221362e-21)
    sum a = (-6.389826587769301e-23,1.401252203520085e-22,7.08899296551347e-23)
    sum e = 7.856950358111135e-13
    sum de = 1.0602290566170399e-27
Info: cfl dt = 1.5626524352097662 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5855e+04 | 2592 |      1 | 4.641e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121224.44117657973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 234.5510689733775, dt = 0.24186201893652992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (2.8%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.9%)
   LB compute        : 135.14 us  (82.9%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1624379890639142e-21,3.0238418140079784e-21,2.7880456715854387e-21)
    sum a = (1.9484638462915612e-22,-2.4367055895609563e-23,8.647073553034214e-23)
    sum e = 7.856835389298383e-13
    sum de = -3.736045247126712e-27
Info: cfl dt = 1.5626524846053218 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8913e+04 | 2592 |      1 | 4.400e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19789.925921621543 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 172                                                     [SPH][rank=0]
Info: time since start : 68.494344264 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000691726 s
sph::RenderFieldGetter compute custom field took :  0.000637525 s
rho_t_ampl=-0.000232708, rho_t_phi=3.14159 rad
eps_t_ampl=-1.82636e-05, eps_t_phi=4.19589e-11 rad
vx_t_ampl=-3.0359e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 245.97s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 234.79293099231404, dt = 1.5626524846053218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.86 us   (5.1%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.6%)
   LB compute        : 203.77 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4516394222517935e-21,2.965964298847842e-21,2.9250535838907952e-21)
    sum a = (5.198513865830595e-23,1.0916885637247392e-22,-1.2825513742134977e-22)
    sum e = 7.856980596863462e-13
    sum de = -1.3631516442219084e-27
Info: cfl dt = 1.5626491972544 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep 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.5447e+04 | 2592 |      1 | 5.703e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98636.02657774027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 236.35558347691935, dt = 1.5626491972544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (3.2%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 151.17 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.388376608741945e-21,3.240832750849896e-21,2.5568648369170766e-21)
    sum a = (1.5070491055171816e-22,8.704581687008213e-23,-2.908700817165112e-24)
    sum e = 7.857032892273217e-13
    sum de = -7.573064690121713e-28
Info: cfl dt = 1.5626477397484762 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4771e+04 | 2592 |      1 | 5.789e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97168.14645725928 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 237.91823267417374, dt = 1.5626477397484762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.8%)
   patch tree reduce : 1.34 us    (0.8%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 149.91 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7301601206912566e-21,3.3595853191073745e-21,2.65025581642841e-21)
    sum a = (-8.325067889841069e-23,-1.0882262208634843e-22,-1.1178533986140996e-22)
    sum e = 7.857081432398784e-13
    sum de = 0
Info: cfl dt = 1.5626475357851384 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2060e+04 | 2592 |      1 | 4.979e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112987.83006337995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 239.48088041392222, dt = 1.5626475357851384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (2.2%)
   patch tree reduce : 1.32 us    (0.9%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.8%)
   LB compute        : 130.27 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 2.56 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.453282612213088e-21,3.0364866742570047e-21,2.3905068136000692e-21)
    sum a = (2.6626096083761545e-22,-6.443119438457962e-23,2.5362663044717255e-22)
    sum e = 7.857133969696237e-13
    sum de = 7.573064690121713e-28
Info: cfl dt = 1.5626485844056082 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8355e+04 | 2592 |      1 | 4.442e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126650.87058402508 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 241.04352794970737, dt = 1.5626485844056082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (2.7%)
   patch tree reduce : 1.49 us    (1.0%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 138.68 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.994713704459714e-21,2.970598608035556e-21,3.0723411661105476e-21)
    sum a = (-2.4364142402666715e-22,-4.6324487645096806e-23,-1.2376977911982157e-22)
    sum e = 7.857190403251111e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.5626508846260425 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9229e+04 | 2592 |      1 | 4.376e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128547.73503541443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 242.606176534113, dt = 1.5626508846260425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (1.8%)
   patch tree reduce : 471.00 ns  (0.3%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 481.00 ns  (0.4%)
   LB compute        : 128.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 1.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.320184225348212e-21,2.9122589456988056e-21,2.5840632286940283e-21)
    sum a = (-5.375670283532687e-23,1.6223637521021e-22,-8.926295874932287e-23)
    sum e = 7.857250620122088e-13
    sum de = 2.1204581132340797e-27
Info: cfl dt = 1.5626544349035802 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9039e+04 | 2592 |      1 | 4.390e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128134.19716037285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 244.16882741873903, dt = 1.5626544349035802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (3.0%)
   patch tree reduce : 1.32 us    (0.9%)
   gen split merge   : 681.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.6%)
   LB compute        : 133.95 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4220620029484875e-21,3.3289231376811827e-21,2.47153712702099e-21)
    sum a = (1.389458323912025e-22,1.0959750590217204e-22,3.27788954488537e-23)
    sum e = 7.857314498889368e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5626592330700069 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6778e+04 | 2592 |      1 | 4.565e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123228.67449723865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 245.7314818536426, dt = 0.24206490021020954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (2.8%)
   patch tree reduce : 1.89 us    (1.2%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 136.17 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.489432791361573e-21,3.314198615137393e-21,2.574826369429466e-21)
    sum a = (2.0162454321949703e-22,-4.895330073533593e-23,-3.444391652417573e-23)
    sum e = 7.856914754887134e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.5626606418054292 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6527e+04 | 2592 |      1 | 4.585e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19004.479396087267 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 180                                                     [SPH][rank=0]
Info: time since start : 69.065481442 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007845450000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006522170000000001 s
rho_t_ampl=-0.000436932, rho_t_phi=3.14159 rad
eps_t_ampl=-1.78474e-05, eps_t_phi=4.20926e-11 rad
vx_t_ampl=-2.89939e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 257.15s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 245.97354675385282, dt = 1.5626606418054292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.40 us   (5.6%)
   patch tree reduce : 2.01 us    (1.0%)
   gen split merge   : 991.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 176.00 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8953007118013806e-21,3.2185148934459043e-21,2.5128660750916877e-21)
    sum a = (-3.7767694266634427e-23,1.7946138677469083e-22,-1.1706582369629678e-22)
    sum e = 7.857366125913294e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.562666328318053 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7458e+04 | 2592 |      1 | 4.511e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124705.61826955757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 247.53620739565824, dt = 1.562666328318053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (2.7%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 143.98 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6463574326652235e-21,3.67745913337769e-21,2.265376252960658e-21)
    sum a = (1.74024086838374e-22,8.488782624525428e-23,6.442728101355526e-23)
    sum e = 7.857450526421616e-13
    sum de = -1.2369338993865465e-27
Info: cfl dt = 1.5626738036114485 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8522e+04 | 2592 |      1 | 4.429e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127015.01491708745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 249.09887372397628, dt = 1.5626738036114485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (2.5%)
   patch tree reduce : 902.00 ns  (0.6%)
   gen split merge   : 560.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.9%)
   LB compute        : 132.79 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1343848511697695e-21,3.736132568675329e-21,2.5078616590141164e-21)
    sum a = (1.991597582775549e-22,1.7059193197628605e-22,1.1963448786054876e-23)
    sum e = 7.857525121863614e-13
    sum de = -1.6913177807938493e-27
Info: cfl dt = 1.56268251758461 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8723e+04 | 2592 |      1 | 4.414e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127450.3268720572 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 250.66154752758774, dt = 1.56268251758461 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (2.0%)
   patch tree reduce : 1.11 us    (0.8%)
   gen split merge   : 550.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.6%)
   LB compute        : 135.69 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 2.49 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 601.00 ns  (57.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3915440801124e-21,4.069655199842662e-21,2.4855648031524853e-21)
    sum a = (4.8788620686724726e-23,5.97255021124568e-23,7.946608979711326e-23)
    sum e = 7.85760276487818e-13
    sum de = -1.9185097214975007e-27
Info: cfl dt = 1.562692463834673 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4314e+04 | 2592 |      1 | 4.772e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117882.21154610344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 252.22423004517236, dt = 1.562692463834673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (2.3%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 140.11 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3118493669896043e-21,4.076414102300644e-21,2.6624884613083e-21)
    sum a = (-2.94811386415112e-23,6.964602080211948e-24,3.213225059666384e-23)
    sum e = 7.857683334862388e-13
    sum de = 1.337908095254836e-27
Info: cfl dt = 1.5627036369327303 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7453e+04 | 2592 |      1 | 5.462e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102991.96212055703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 253.78692250900704, dt = 1.5627036369327303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (2.3%)
   patch tree reduce : 1.10 us    (0.7%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (1.1%)
   LB compute        : 141.40 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (56.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1516383457633643e-21,4.04627825515893e-21,2.6757175292776092e-21)
    sum a = (-4.0236972306126995e-22,-5.907315048262027e-23,3.567492337087489e-23)
    sum e = 7.857766672466586e-13
    sum de = -1.464125840090198e-27
Info: cfl dt = 1.5627160308997827 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5800e+04 | 2592 |      1 | 4.645e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121110.47021611729 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 255.34962614593977, dt = 1.5627160308997827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 15.97 us   (9.5%)
   patch tree reduce : 1.59 us    (0.9%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 139.20 us  (83.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3826254438774132e-21,3.902280897378903e-21,2.73423537774428e-21)
    sum a = (1.182519088161465e-22,-2.6983708537679313e-23,1.103165532373914e-22)
    sum e = 7.857852611330165e-13
    sum de = 1.5651000359584874e-27
Info: cfl dt = 1.5627296391473455 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6905e+04 | 2592 |      1 | 4.555e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123509.09371608973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 256.91234217683956, dt = 0.24182033855203144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.7%)
   patch tree reduce : 1.81 us    (1.1%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 144.83 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6586813573749342e-21,3.920676922492461e-21,2.8192339997790875e-21)
    sum a = (2.0845405149612843e-22,1.2066388983263566e-22,5.005481612467543e-23)
    sum e = 7.857027120848488e-13
    sum de = 1.337908095254836e-27
Info: cfl dt = 1.5627323661781394 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7684e+04 | 2592 |      1 | 4.493e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19373.86125796913 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 188                                                     [SPH][rank=0]
Info: time since start : 69.632160463 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006938290000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006692120000000001 s
rho_t_ampl=-0.00062925, rho_t_phi=3.14159 rad
eps_t_ampl=-1.72165e-05, eps_t_phi=4.70504e-11 rad
vx_t_ampl=-2.68989e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 268.33s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 257.1541625153916, dt = 1.5627323661781394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.05 us   (5.4%)
   patch tree reduce : 2.10 us    (0.9%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 182.22 us  (82.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0259343137243146e-21,4.127192523331124e-21,2.8901700241846638e-21)
    sum a = (-1.5721990199982047e-22,-8.790153632487079e-23,1.0414795017658762e-22)
    sum e = 7.857920401461527e-13
    sum de = 3.1806871698511196e-27
Info: cfl dt = 1.5627468610868915 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3972e+04 | 2592 |      1 | 5.895e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95440.02145140943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 258.7168948815697, dt = 1.5627468610868915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (2.8%)
   patch tree reduce : 1.91 us    (1.1%)
   gen split merge   : 961.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 158.00 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5157238307422892e-21,3.8266749030269846e-21,3.0951934520970186e-21)
    sum a = (2.2967430935566164e-22,1.290644778665719e-22,-3.0266898972912727e-23)
    sum e = 7.858028195296751e-13
    sum de = -9.34011311781678e-28
Info: cfl dt = 1.5627630579745877 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4502e+04 | 2592 |      1 | 5.824e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96591.59363028177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 260.2796417426566, dt = 1.5627630579745877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (2.8%)
   patch tree reduce : 1.90 us    (1.1%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 155.95 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2436569835958715e-21,4.1980165781472434e-21,2.9428652687069217e-21)
    sum a = (-3.6638001168244274e-23,1.4522759396534294e-22,9.472462022638239e-23)
    sum e = 7.858121281104564e-13
    sum de = 9.844984097158227e-28
Info: cfl dt = 1.5627804470530684 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4979e+04 | 2592 |      1 | 5.763e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97626.59137239198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 261.8424048006312, dt = 1.5627804470530684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (2.5%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 741.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 154.61 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.00539443920813e-21,4.437671982775614e-21,3.188565117433859e-21)
    sum a = (-3.3180883538738955e-22,9.483735449890039e-23,2.3218482061873235e-22)
    sum e = 7.858216143556468e-13
    sum de = -7.068193710780266e-28
Info: cfl dt = 1.56279901664943 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3199e+04 | 2592 |      1 | 4.872e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115470.19232980903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 263.40518524768424, dt = 1.56279901664943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (2.8%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.9%)
   LB compute        : 154.91 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2207712326898787e-21,4.546424199628024e-21,3.658833383487791e-21)
    sum a = (-4.966798406444888e-23,-2.7774859773651954e-22,-9.61825914494884e-23)
    sum e = 7.858312675385984e-13
    sum de = 6.563322731438818e-28
Info: cfl dt = 1.5628187570389438 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0305e+04 | 2592 |      1 | 6.431e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87483.34592937403 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 264.96798426433367, dt = 1.5628187570389438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (2.7%)
   patch tree reduce : 1.97 us    (1.0%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.7%)
   LB compute        : 186.90 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.309503490599796e-21,3.821283185966487e-21,3.2519312911301394e-21)
    sum a = (7.387936115040147e-23,2.083202614931763e-23,-1.1270681676099477e-22)
    sum e = 7.858410686808708e-13
    sum de = -2.1709452111682245e-27
Info: cfl dt = 1.5628396579706418 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1105e+04 | 2592 |      1 | 6.306e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89221.34116839082 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 266.5308030213726, dt = 1.5628396579706418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (3.2%)
   patch tree reduce : 2.54 us    (1.5%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 150.99 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.561733149658543e-21,4.087069162205915e-21,3.0628764235409954e-21)
    sum a = (-1.6087856714801586e-22,-6.783148135053711e-23,-4.807879517524505e-23)
    sum e = 7.85850998321187e-13
    sum de = -1.6155871338926322e-27
Info: cfl dt = 1.5628617086164949 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8595e+04 | 2592 |      1 | 6.716e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83773.96334002815 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 268.09364267934325, dt = 0.24113559758711745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (2.3%)
   patch tree reduce : 1.92 us    (0.8%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.4%)
   LB compute        : 217.49 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4105596732194242e-21,4.001604028086228e-21,3.101784532110469e-21)
    sum a = (-7.034907021793224e-23,5.2532935506974896e-23,-6.160354078543592e-24)
    sum e = 7.857161148182221e-13
    sum de = -1.539856486991415e-27
Info: cfl dt = 1.562865671798009 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9861e+04 | 2592 |      1 | 6.503e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13349.823581290037 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 196                                                     [SPH][rank=0]
Info: time since start : 70.31660094 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000895782 s
sph::RenderFieldGetter compute custom field took :  0.0007702140000000001 s
rho_t_ampl=-0.000804825, rho_t_phi=3.14159 rad
eps_t_ampl=-1.63871e-05, eps_t_phi=5.45368e-11 rad
vx_t_ampl=-2.41285e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 279.52s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 268.33477827693036, dt = 1.562865671798009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.36 us   (4.9%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.6%)
   LB compute        : 226.69 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.215841662805994e-21,4.098192787998587e-21,3.0972107403672017e-21)
    sum a = (-1.8478184611622568e-22,1.1101080071034314e-22,-9.543194507497453e-23)
    sum e = 7.858587103015886e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.5628885845615665 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3653e+04 | 2592 |      1 | 4.831e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116461.0656282226 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 269.8976439487284, dt = 1.5628885845615665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (3.3%)
   patch tree reduce : 2.03 us    (1.2%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 155.21 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.911029924985815e-21,4.317565066542224e-21,2.8783014902892144e-21)
    sum a = (-4.570635576713977e-22,-2.5951349170822156e-23,1.0443511554198157e-22)
    sum e = 7.858707277566798e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5629130691124564 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.2281e+04 | 2592 |      1 | 6.130e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91778.14238813969 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 271.46053253328995, dt = 1.5629130691124564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.6%)
   patch tree reduce : 1.64 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 161.83 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.429564501442158e-22,4.16965229518255e-21,3.1977094709778875e-21)
    sum a = (7.825692190666331e-23,-1.3105818961221268e-22,-5.697727078398233e-23)
    sum e = 7.858809471852603e-13
    sum de = 5.048709793414476e-28
Info: cfl dt = 1.5629386690187121 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4072e+04 | 2592 |      1 | 4.794e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117374.05705076216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 273.02344560240243, dt = 1.5629386690187121 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (2.8%)
   patch tree reduce : 1.99 us    (1.1%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.7%)
   LB compute        : 166.18 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4813357501072332e-21,3.8827808540101006e-21,2.9825207271619566e-21)
    sum a = (4.775520825012919e-24,2.1746993313434584e-22,-2.1962242550791263e-23)
    sum e = 7.858911978048008e-13
    sum de = -6.058451752097371e-28
Info: cfl dt = 1.5629653676547115 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3993e+04 | 2592 |      1 | 4.801e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 117204.13566082764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 274.58638427142114, dt = 1.5629653676547115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (3.0%)
   patch tree reduce : 1.64 us    (0.9%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.9%)
   LB compute        : 155.64 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4616174705716958e-21,4.4951900501317165e-21,2.975557673470168e-21)
    sum a = (-1.705323081706226e-22,-3.34152065993816e-23,1.986949157413425e-22)
    sum e = 7.859014733734788e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.562993151265395 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3604e+04 | 2592 |      1 | 4.835e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116361.89905795112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 276.14934963907587, dt = 1.562993151265395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (3.2%)
   patch tree reduce : 2.15 us    (1.3%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 145.15 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1124396037965577e-21,4.246753849147678e-21,3.458556214233085e-21)
    sum a = (1.1352131896663773e-22,2.0971412465736544e-22,4.033858682064056e-23)
    sum e = 7.859117537639982e-13
    sum de = 2.3728936029048035e-27
Info: cfl dt = 1.5630220056073578 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5568e+04 | 2592 |      1 | 4.665e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120629.29080062611 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 277.71234279034127, dt = 1.5630220056073578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (3.2%)
   patch tree reduce : 1.44 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 147.36 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4525799257845746e-21,4.764416455352606e-21,3.397851384327352e-21)
    sum a = (-9.26990211758556e-23,-1.4048822853468102e-22,-9.073461043832048e-23)
    sum e = 7.859220186333564e-13
    sum de = -5.806016262426647e-28
Info: cfl dt = 1.5630519159079261 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6061e+04 | 2592 |      1 | 4.624e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121700.59501743758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 279.27536479594863, dt = 0.2400292425205066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (3.3%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 136.89 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2447163956807866e-21,4.456934533845323e-21,3.2736372786834727e-21)
    sum a = (8.020820998570085e-23,-1.1880797978418843e-22,-1.1591138885364637e-22)
    sum e = 7.857303336419672e-13
    sum de = 9.087677628146056e-28
Info: cfl dt = 1.5630569953276596 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7581e+04 | 2592 |      1 | 4.502e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19195.905787172036 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 204                                                     [SPH][rank=0]
Info: time since start : 70.901825004 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000852056 s
sph::RenderFieldGetter compute custom field took :  0.000705717 s
rho_t_ampl=-0.000959257, rho_t_phi=3.14159 rad
eps_t_ampl=-1.53806e-05, eps_t_phi=5.29501e-11 rad
vx_t_ampl=-2.07541e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 290.70s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 279.51539403846914, dt = 1.5630569953276596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.85 us   (5.4%)
   patch tree reduce : 2.20 us    (1.0%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 193.24 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.365490857835952e-21,4.273879320930614e-21,3.0894395899711974e-21)
    sum a = (-2.394692620155672e-22,9.74438525399215e-23,9.69911307005507e-24)
    sum e = 7.859298895470508e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.563087721151688 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5347e+04 | 2592 |      1 | 4.683e-02 | 0.1% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120153.73649333115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 281.0784510337968, dt = 1.563087721151688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (3.6%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 134.37 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.314541204151525e-22,4.595225657736322e-21,3.2027683413761262e-21)
    sum a = (-2.1084181190863487e-22,-1.209971613317435e-22,9.839780545558338e-23)
    sum e = 7.859419241015398e-13
    sum de = 7.32062920045099e-28
Info: cfl dt = 1.5631198487072413 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6521e+04 | 2592 |      1 | 4.586e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122705.37645747418 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 282.6415387549485, dt = 1.5631198487072413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (2.9%)
   patch tree reduce : 1.80 us    (1.1%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 153.01 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.798114686980722e-22,4.235643060776579e-21,3.425897822628538e-21)
    sum a = (-2.5783961228597974e-22,-3.5259583026884695e-23,1.412476657480723e-22)
    sum e = 7.859520285221376e-13
    sum de = 1.5146129380243427e-27
Info: cfl dt = 1.5631529865361902 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6373e+04 | 2592 |      1 | 4.598e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122385.76649978204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 284.20465860365573, dt = 1.5631529865361902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.6%)
   patch tree reduce : 2.10 us    (1.2%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 154.99 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.09388888001378e-23,4.247370045383163e-21,3.6801792667524046e-21)
    sum a = (8.665259561515376e-24,6.158412005451703e-23,8.601842617836922e-23)
    sum e = 7.859620129099055e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5631871135096371 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5413e+04 | 2592 |      1 | 4.678e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120304.91603895053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 285.7678115901919, dt = 1.5631871135096371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (3.2%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 1.01 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 136.43 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.93309408091116e-22,4.419237445397338e-21,3.771476286690158e-21)
    sum a = (5.2890176879175335e-24,-2.9433800649462185e-23,-1.3618221499820342e-22)
    sum e = 7.859718782058946e-13
    sum de = -7.825500179792437e-28
Info: cfl dt = 1.5632222122143016 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6546e+04 | 2592 |      1 | 4.584e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122767.1567362866 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 287.33099870370154, dt = 1.5632222122143016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (1.0%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.3%)
   LB compute        : 443.89 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (77.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.694831536523419e-22,4.3023077910031705e-21,3.3849226338456835e-21)
    sum a = (3.1323308637181508e-24,-4.9268068294755094e-23,6.19987188892067e-23)
    sum e = 7.859816051369463e-13
    sum de = 0
Info: cfl dt = 1.563258264799138 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7664e+04 | 2592 |      1 | 4.495e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125197.43610820545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 288.89422091591587, dt = 1.563258264799138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (3.0%)
   patch tree reduce : 1.74 us    (1.2%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.9%)
   LB compute        : 130.09 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7194793859428405e-22,4.2097050504891094e-21,3.636743062501993e-21)
    sum a = (-3.094717218510388e-22,-3.529939909223101e-24,2.5641813435094188e-23)
    sum e = 7.859911745059775e-13
    sum de = -2.2466758580694416e-27
Info: cfl dt = 1.5632952529453392 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7181e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124151.02045163969 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 290.457479180715, dt = 0.23853061929287378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (3.0%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (1.0%)
   LB compute        : 133.76 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0762894246480729e-22,4.2447126991176315e-21,3.6144418036726154e-21)
    sum a = (-7.291655453245532e-24,6.6804838647974e-23,-6.75907430364357e-23)
    sum e = 7.857439426067076e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5633012959147072 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9327e+04 | 2592 |      1 | 4.369e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19654.605594749373 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 212                                                     [SPH][rank=0]
Info: time since start : 71.46228009400001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000836702 s
sph::RenderFieldGetter compute custom field took :  0.0007457360000000001 s
rho_t_ampl=-0.00108868, rho_t_phi=3.14159 rad
eps_t_ampl=-1.42228e-05, eps_t_phi=6.70695e-11 rad
vx_t_ampl=-1.68622e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 301.88s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 290.69600980000786, dt = 1.5633012959147072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.88 us   (5.3%)
   patch tree reduce : 2.11 us    (1.0%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.6%)
   LB compute        : 180.22 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4647849419421516e-24,4.3575407973193486e-21,3.4976576977757025e-21)
    sum a = (-4.889132005930565e-22,-5.734842283586818e-23,7.10343229979359e-23)
    sum e = 7.859984186514668e-13
    sum de = 1.2621774483536189e-27
Info: cfl dt = 1.5633390323580758 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8049e+04 | 2592 |      1 | 4.465e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126039.15377022336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 292.25931109592256, dt = 1.5633390323580758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.7%)
   patch tree reduce : 1.35 us    (0.9%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (1.1%)
   LB compute        : 134.39 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2471811806227286e-21,4.170595845668137e-21,3.717064800244422e-21)
    sum a = (1.8073805832085184e-22,4.871340141969768e-23,-1.320143468871377e-22)
    sum e = 7.860092515581858e-13
    sum de = 9.592548607487504e-28
Info: cfl dt = 1.563377965207155 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7213e+04 | 2592 |      1 | 4.530e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124227.25798528209 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 293.82265012828066, dt = 1.563377965207155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (3.0%)
   patch tree reduce : 2.26 us    (1.4%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 139.51 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4835627179449076e-22,4.329818385433285e-21,3.35195952368043e-21)
    sum a = (9.631917405933314e-23,-9.179538704797072e-23,4.260041201188441e-23)
    sum e = 7.86018229901855e-13
    sum de = -1.1612032524853294e-27
Info: cfl dt = 1.5634177778450173 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6493e+04 | 2592 |      1 | 4.588e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122665.93848186225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 295.3860280934878, dt = 1.5634177778450173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (2.9%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 139.01 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7769910345881572e-22,4.0766451758889516e-21,3.555056198394287e-21)
    sum a = (2.71216205564645e-22,9.731613022450957e-23,8.209320259134225e-23)
    sum e = 7.860269473274799e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5634584452063016 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7368e+04 | 2592 |      1 | 4.518e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124570.0788306304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 296.94944587133284, dt = 1.5634584452063016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.7%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 136.10 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5715922894263115e-22,4.3765016689821014e-21,3.714277374723529e-21)
    sum a = (-2.4080435385911915e-22,-8.836032370755774e-23,3.726949007753791e-27)
    sum e = 7.860354139187567e-13
    sum de = -4.543838814073028e-28
Info: cfl dt = 1.5634999466857131 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7205e+04 | 2592 |      1 | 4.531e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124218.07476293937 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 298.51290431653916, dt = 1.5634999466857131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (2.9%)
   patch tree reduce : 1.91 us    (1.1%)
   gen split merge   : 1.12 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 149.19 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7734668375613e-22,4.0933659174872826e-21,3.650111459830844e-21)
    sum a = (5.778123449834179e-23,-3.538855899674707e-23,-1.5289381413449604e-23)
    sum e = 7.860436131740278e-13
    sum de = -8.204153414298523e-28
Info: cfl dt = 1.5635422613018695 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7771e+04 | 2592 |      1 | 4.487e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125451.7846438275 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 300.0764042632249, dt = 1.5635422613018695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (3.0%)
   patch tree reduce : 1.20 us    (0.8%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 136.52 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.140254924586435e-22,4.0793538718407736e-21,3.614250478787272e-21)
    sum a = (1.1169840510332637e-22,1.899031248386729e-22,3.016738088561899e-23)
    sum e = 7.860515289538768e-13
    sum de = 3.407879110554771e-28
Info: cfl dt = 1.5635850699068585 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7799e+04 | 2592 |      1 | 4.484e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125515.78277581223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 301.63994652452675, dt = 0.2366790370198828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.9%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 140.77 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.121477148583679e-22,4.300420690031996e-21,3.656927249902955e-21)
    sum a = (2.131011981054152e-23,-7.22225314286858e-24,-1.4588563228025992e-22)
    sum e = 7.857555867681363e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.5635916242556072 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9780e+04 | 2592 |      1 | 4.336e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19650.907722351847 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 220                                                     [SPH][rank=0]
Info: time since start : 72.00389337 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008520450000000001 s
sph::RenderFieldGetter compute custom field took :  0.000731815 s
rho_t_ampl=-0.00118989, rho_t_phi=3.14159 rad
eps_t_ampl=-1.29432e-05, eps_t_phi=8.10925e-11 rad
vx_t_ampl=-1.25521e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 313.06s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 301.87662556154663, dt = 1.5635916242556072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.54 us   (5.3%)
   patch tree reduce : 2.25 us    (1.0%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.6%)
   LB compute        : 190.51 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (76.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.955385289056484e-23,4.265778907918294e-21,3.407987668359801e-21)
    sum a = (-1.5293220319456694e-22,1.644483732687633e-23,1.331243086482945e-22)
    sum e = 7.860574284329563e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.5636336401990663 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7403e+04 | 2592 |      1 | 4.515e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124659.58688507632 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 303.4402171858022, dt = 1.5636336401990663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.6%)
   patch tree reduce : 2.27 us    (1.4%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 145.13 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.407857071173215e-22,4.309952475549663e-21,3.834274119049965e-21)
    sum a = (-1.5920970234357584e-22,1.9872494076796057e-22,-4.4055805117641143e-23)
    sum e = 7.860659639067003e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.5636766133029727 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8242e+04 | 2592 |      1 | 4.450e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126485.619601556 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 305.00385082600127, dt = 1.5636766133029727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.6%)
   patch tree reduce : 1.28 us    (0.9%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.8%)
   LB compute        : 134.54 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (47.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.287547478342295e-22,4.763370205494438e-21,3.6268626937784634e-21)
    sum a = (-1.0436823738536299e-23,-1.7883275428705683e-22,2.7346113970056614e-23)
    sum e = 7.860729199384718e-13
    sum de = -7.446846945286351e-28
Info: cfl dt = 1.563720316422511 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9090e+04 | 2592 |      1 | 4.387e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128329.51870628611 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 306.56752743930423, dt = 1.563720316422511 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (2.0%)
   patch tree reduce : 681.00 ns  (0.5%)
   gen split merge   : 651.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.6%)
   LB compute        : 128.13 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 1.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.309849451371908e-22,4.188465536497218e-21,3.7254491232801464e-21)
    sum a = (3.401916716743074e-23,-9.352046571796894e-23,7.440385424573332e-23)
    sum e = 7.86079498494396e-13
    sum de = -2.6505726415425997e-28
Info: cfl dt = 1.563764722288565 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8531e+04 | 2592 |      1 | 4.428e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127120.66596553168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 308.13124775572675, dt = 1.563764722288565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (2.0%)
   patch tree reduce : 1.28 us    (0.7%)
   gen split merge   : 551.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 159.74 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.397879022853312e-22,4.1088542666146435e-21,3.878591818008468e-21)
    sum a = (-1.5944077593188293e-22,5.2436103237222083e-23,3.372587551432548e-23)
    sum e = 7.8608571985598e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.5638098085397685 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7270e+04 | 2592 |      1 | 4.526e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124384.76300973678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 309.6950124780153, dt = 1.5638098085397685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.4%)
   patch tree reduce : 912.00 ns  (0.6%)
   gen split merge   : 560.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.9%)
   LB compute        : 147.38 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.284023281315438e-22,4.304971555979488e-21,3.899527278882817e-21)
    sum a = (-7.050311927680362e-23,1.6322911909643292e-22,1.6696280075276488e-22)
    sum e = 7.860915719417891e-13
    sum de = -6.058451752097371e-28
Info: cfl dt = 1.5638555525058773 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8204e+04 | 2592 |      1 | 4.453e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126417.05552340826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 311.2588222865551, dt = 1.5638555525058773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (2.6%)
   patch tree reduce : 1.44 us    (0.9%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (1.0%)
   LB compute        : 137.73 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.703036721445603e-22,4.647037491203398e-21,4.2648115871758356e-21)
    sum a = (1.2913162359893804e-22,3.215282671395574e-23,8.705615386537472e-23)
    sum e = 7.860970432802391e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.563901931201412 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9633e+04 | 2592 |      1 | 4.347e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129524.17965495169 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 312.82267783906093, dt = 0.23456348402447702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (2.1%)
   patch tree reduce : 581.00 ns  (0.4%)
   gen split merge   : 560.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.7%)
   LB compute        : 148.42 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.75996459221454e-22,4.5519121973503175e-21,4.222750555222623e-21)
    sum a = (-1.964125500610152e-23,-1.0181479400068495e-23,1.5351222521280572e-22)
    sum e = 7.857641228275816e-13
    sum de = -2.145701662201152e-28
Info: cfl dt = 1.563909082349102 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0555e+04 | 2592 |      1 | 4.280e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19727.642571685497 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 228                                                     [SPH][rank=0]
Info: time since start : 72.54428567000001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000635321 s
sph::RenderFieldGetter compute custom field took :  0.0005591060000000001 s
rho_t_ampl=-0.00126037, rho_t_phi=3.14159 rad
eps_t_ampl=-1.15743e-05, eps_t_phi=1.03953e-10 rad
vx_t_ampl=-7.93365e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 324.24s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 313.0572413230854, dt = 1.563909082349102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.43 us   (4.3%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.6%)
   LB compute        : 217.16 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.3617829155387495e-22,4.531096318270322e-21,4.4706238023003476e-21)
    sum a = (-3.617585399163012e-22,2.2093804280607273e-23,-1.1974029889569805e-22)
    sum e = 7.861010202539835e-13
    sum de = -6.310887241768095e-30
Info: cfl dt = 1.5639560332525937 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7168e+04 | 2592 |      1 | 4.534e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124175.2448808262 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 314.6211504054345, dt = 1.5639560332525937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (2.3%)
   patch tree reduce : 1.85 us    (1.1%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (1.0%)
   LB compute        : 150.84 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.657567873456097e-21,4.59091870279871e-21,4.06968418730531e-21)
    sum a = (1.6906884211134446e-22,2.1552827312148776e-22,-1.826218324705912e-22)
    sum e = 7.861063964061508e-13
    sum de = -1.4515040656066617e-28
Info: cfl dt = 1.564003691770806 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7614e+04 | 2592 |      1 | 4.499e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125147.71396749315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 316.18510643868706, dt = 1.564003691770806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (2.0%)
   patch tree reduce : 1.19 us    (0.7%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.8%)
   LB compute        : 153.47 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.850923817962133e-22,5.0793184065288614e-21,3.73489099021519e-21)
    sum a = (1.6982624998412878e-22,1.007240143364368e-22,-1.4151948318512667e-22)
    sum e = 7.861106399647003e-13
    sum de = 4.67005655890839e-28
Info: cfl dt = 1.5640519163326139 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7177e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124200.58997291503 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 317.74911013045784, dt = 1.5640519163326139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (2.1%)
   patch tree reduce : 1.35 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (1.0%)
   LB compute        : 150.70 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.104742595148252e-22,5.146958780794972e-21,3.5456892843527955e-21)
    sum a = (-2.5534915250089237e-22,2.719718081750206e-23,8.284525594750964e-23)
    sum e = 7.861144255011464e-13
    sum de = -1.8932661725304283e-28
Info: cfl dt = 1.5641006771263848 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8279e+04 | 2592 |      1 | 4.448e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126598.65344994747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 319.31316204679047, dt = 1.5641006771263848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (2.4%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 691.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 135.87 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.43758581738776e-21,5.132237467606575e-21,3.850726655375755e-21)
    sum a = (2.279797697080764e-22,-1.2770737185086997e-22,6.152926302902907e-24)
    sum e = 7.861177835381149e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.5641499497216165 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8533e+04 | 2592 |      1 | 4.428e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127155.72743642009 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 320.87726272391683, dt = 1.5641499497216165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (2.0%)
   patch tree reduce : 1.11 us    (0.7%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 150.99 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.082148733180449e-22,4.811356487332875e-21,3.8003734923801026e-21)
    sum a = (-8.823159846858545e-23,-1.867403552448978e-23,1.3709353393429642e-22)
    sum e = 7.861207076010087e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.5641997094549307 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9169e+04 | 2592 |      1 | 4.381e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128541.10312907038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 322.44141267363847, dt = 1.5641997094549307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.5%)
   patch tree reduce : 921.00 ns  (0.6%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 136.29 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0939537167319916e-21,4.867423926051272e-21,4.117220530749724e-21)
    sum a = (2.9467017477781324e-22,-5.0126219839177626e-23,6.869831771052692e-24)
    sum e = 7.861231920280432e-13
    sum de = 5.99534287967969e-29
Info: cfl dt = 1.5642499314349458 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9125e+04 | 2592 |      1 | 4.384e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128449.40040050344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 324.0056123830934, dt = 0.23224470153076027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.4%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 691.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 137.44 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.256737666568018e-22,4.831142163331668e-21,4.016968074234521e-21)
    sum a = (1.2633306569610789e-22,8.707582935762592e-24,-3.614603202160043e-23)
    sum e = 7.857687292003201e-13
    sum de = -1.262177448353619e-29
Info: cfl dt = 1.5642574777650031 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9523e+04 | 2592 |      1 | 4.355e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19199.70438786375 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 236                                                     [SPH][rank=0]
Info: time since start : 73.285017201 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000801129 s
sph::RenderFieldGetter compute custom field took :  0.000703383 s
rho_t_ampl=-0.00129841, rho_t_phi=3.14159 rad
eps_t_ampl=-1.0151e-05, eps_t_phi=1.27075e-10 rad
vx_t_ampl=-3.12405e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 335.42s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 324.2378570846242, dt = 1.5642574777650031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.99 us   (5.8%)
   patch tree reduce : 1.94 us    (0.9%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 179.90 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.385555098143601e-22,4.851611432029203e-21,3.9554312701298984e-21)
    sum a = (8.527899150688392e-23,1.3450047400226026e-22,-4.015940139518918e-23)
    sum e = 7.861248671399902e-13
    sum de = -1.072850831100576e-28
Info: cfl dt = 1.5643066424929872 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8856e+04 | 2592 |      1 | 4.404e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127868.3686656354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 325.8021145623892, dt = 1.5643066424929872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (2.6%)
   patch tree reduce : 1.16 us    (0.7%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 149.54 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.51415092179447e-22,5.160396351826107e-21,3.889470680242078e-21)
    sum a = (5.649749234108025e-23,-1.618046667636528e-23,5.122223650449619e-23)
    sum e = 7.861265394336115e-13
    sum de = -6.153115060723892e-29
Info: cfl dt = 1.5643545780337302 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2074e+04 | 2592 |      1 | 4.977e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113139.31378527002 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 327.36642120488216, dt = 1.5643545780337302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (3.3%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 139.12 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8763878180669377e-22,5.0171981235389754e-21,4.0410748719991104e-21)
    sum a = (-5.268477813401349e-23,3.059348116230712e-23,1.1135659631368787e-22)
    sum e = 7.861276517727094e-13
    sum de = -2.3665827156630354e-29
Info: cfl dt = 1.5644029059735198 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9120e+04 | 2592 |      1 | 4.384e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128451.46717636824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 328.9307757829159, dt = 1.5644029059735198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.7%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 134.32 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.549103848978721e-22,5.101649101354426e-21,4.262317185403944e-21)
    sum a = (-2.1271607545823672e-23,-1.3431372963532113e-22,-1.737247439827613e-23)
    sum e = 7.861282694605442e-13
    sum de = 1.8143800820083272e-29
Info: cfl dt = 1.564429761369872 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9360e+04 | 2592 |      1 | 4.367e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128975.52268374116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 330.4951786888894, dt = 1.564429761369872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.9%)
   patch tree reduce : 1.46 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (1.0%)
   LB compute        : 136.10 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 812.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.621506906648271e-22,4.762676984729517e-21,4.134447103273677e-21)
    sum a = (-1.6781077479722814e-22,-7.725269454567427e-23,-1.1761016684385875e-22)
    sum e = 7.861284220739718e-13
    sum de = -2.2482535798798836e-29
Info: cfl dt = 1.5644313356204504 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8634e+04 | 2592 |      1 | 4.421e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127401.75062170667 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 332.05960845025925, dt = 1.5644313356204504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.6%)
   patch tree reduce : 1.31 us    (0.8%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 156.31 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.40674903154964e-22,4.686284698306276e-21,3.872046658238835e-21)
    sum a = (-1.8046847246782692e-22,-1.3839332180179985e-22,3.777330907951401e-23)
    sum e = 7.861281074816814e-13
    sum de = -4.1020767071492614e-29
Info: cfl dt = 1.564400905937924 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7555e+04 | 2592 |      1 | 5.451e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103328.68683464851 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 333.6240397858797, dt = 1.564400905937924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.8%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 1.11 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 149.56 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2336248634420469e-21,4.422032793944775e-21,4.0526826465690185e-21)
    sum a = (-2.394179123292767e-22,-1.0974130006763872e-22,-5.681811624585472e-23)
    sum e = 7.861273231128575e-13
    sum de = -2.745235950169121e-28
Info: cfl dt = 1.5643529372318417 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0468e+04 | 2592 |      1 | 5.136e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109655.07401361817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 335.1884406918176, dt = 0.23003215434528101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.6%)
   patch tree reduce : 1.15 us    (0.7%)
   gen split merge   : 931.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 151.49 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3265677956277821e-21,4.419221398620372e-21,3.965623197147134e-21)
    sum a = (2.038454171515595e-22,-2.8564967969121815e-23,7.214217084397494e-24)
    sum e = 7.85769003527447e-13
    sum de = -1.5777218104420236e-28
Info: cfl dt = 1.5643459543487703 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7268e+04 | 2592 |      1 | 4.526e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18296.64008721354 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 244                                                     [SPH][rank=0]
Info: time since start : 73.845638961 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008394860000000001 s
sph::RenderFieldGetter compute custom field took :  0.000716192 s
rho_t_ampl=-0.00130312, rho_t_phi=3.14159 rad
eps_t_ampl=-8.70925e-06, eps_t_phi=1.60086e-10 rad
vx_t_ampl=1.75478e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 346.60s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 335.4184728461629, dt = 1.5643459543487703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.60 us   (5.8%)
   patch tree reduce : 2.20 us    (1.1%)
   gen split merge   : 991.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.6%)
   LB compute        : 172.76 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.622931210832483e-22,4.3838222086338855e-21,3.9842734762493604e-21)
    sum a = (-4.303103711140673e-23,1.8225197143521612e-22,-1.4418136397466167e-22)
    sum e = 7.861264957807493e-13
    sum de = -4.733165431326071e-29
Info: cfl dt = 1.5642955880519522 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8785e+04 | 2592 |      1 | 4.409e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127723.05855601335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 336.98281880051167, dt = 1.5642955880519522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.4%)
   patch tree reduce : 1.02 us    (0.7%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 134.65 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2177064606920039e-21,4.83384123121731e-21,3.640313672335606e-21)
    sum a = (-3.5946064145480307e-22,1.5764664597475388e-22,-2.5333176033738127e-23)
    sum e = 7.861242461399249e-13
    sum de = -7.888609052210118e-29
Info: cfl dt = 1.5642453787765516 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3356e+04 | 2592 |      1 | 4.858e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 115923.54429673479 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 338.5471143885636, dt = 1.5642453787765516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.8%)
   patch tree reduce : 1.99 us    (1.3%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 139.19 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.040225735692616e-21,5.061195176623722e-21,3.693643216817734e-21)
    sum a = (-2.348221154062804e-22,-1.64450379115884e-23,1.2719907131296872e-22)
    sum e = 7.861220804739469e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.5641956470463072 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4794e+04 | 2592 |      1 | 5.787e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97317.02233252939 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 340.11135976734016, dt = 1.5641956470463072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (2.9%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 138.71 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 842.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3004659458126747e-21,4.8993473841469736e-21,4.011906381986434e-21)
    sum a = (-3.0211587928993016e-22,2.6719277711754645e-22,1.79223005189862e-22)
    sum e = 7.861194325332289e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.5641464230882496 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7535e+04 | 2592 |      1 | 4.505e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124994.90194878129 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 341.67555541438645, dt = 1.5641464230882496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (2.4%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (1.2%)
   LB compute        : 136.94 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8180707836205267e-21,5.539097078862867e-21,4.332925209945526e-21)
    sum a = (-5.076686735106476e-22,-8.466961515160883e-23,9.483406742075954e-24)
    sum e = 7.861163496525199e-13
    sum de = 1.8932661725304283e-29
Info: cfl dt = 1.5640977308975799 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7089e+04 | 2592 |      1 | 4.540e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124020.59951593012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 343.2397018374747, dt = 1.5640977308975799 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (2.7%)
   patch tree reduce : 1.46 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 154.87 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (53.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.783034088390879e-21,5.1315185719985085e-21,4.215009392028022e-21)
    sum a = (-1.494660993699608e-22,1.6154591248507978e-23,1.3034093079570366e-23)
    sum e = 7.861128381415144e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.5640495941812451 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6223e+04 | 2592 |      1 | 4.610e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122136.22464197905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 344.80379956837226, dt = 1.5640495941812451 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.5%)
   patch tree reduce : 1.81 us    (1.1%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 145.82 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.743186731829481e-21,5.235607595464667e-21,4.238172170241822e-21)
    sum a = (1.7117417924925338e-22,2.552366244774199e-22,-1.075781490706243e-22)
    sum e = 7.861089052486939e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.564002036335883 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7654e+04 | 2592 |      1 | 4.496e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125242.18781031335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 346.3678491625535, dt = 0.2312394451481623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (3.1%)
   patch tree reduce : 1.67 us    (1.1%)
   gen split merge   : 782.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 130.69 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.442482968912538e-21,5.481617523771482e-21,4.118974094546024e-21)
    sum a = (-1.2554998298017834e-23,-7.387264156254705e-23,-1.4198256879809514e-22)
    sum e = 7.857651762222669e-13
    sum de = 4.417621069237666e-29
Info: cfl dt = 1.563995182678314 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9798e+04 | 2592 |      1 | 4.335e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19204.940592851955 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 252                                                     [SPH][rank=0]
Info: time since start : 74.40081156800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007984450000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007071880000000001 s
rho_t_ampl=-0.00127443, rho_t_phi=3.14159 rad
eps_t_ampl=-7.28553e-06, eps_t_phi=2.07063e-10 rad
vx_t_ampl=6.5794e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 357.78s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 346.5990886077017, dt = 1.563995182678314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.31 us   (5.5%)
   patch tree reduce : 1.94 us    (0.9%)
   gen split merge   : 971.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 178.29 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.476373761864243e-21,5.328075543052216e-21,3.892936211457178e-21)
    sum a = (-1.984151878263432e-22,1.468582975283112e-22,-2.9808390063134676e-23)
    sum e = 7.861057255349072e-13
    sum de = -3.9127500898962186e-28
Info: cfl dt = 1.5639481779054065 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7842e+04 | 2592 |      1 | 4.481e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125644.79590059674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 348.16308379037997, dt = 1.5639481779054065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (1.8%)
   patch tree reduce : 941.00 ns  (0.7%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.8%)
   LB compute        : 127.68 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.947353084520356e-21,5.7303201012531524e-21,3.934037371712772e-21)
    sum a = (6.690864123647132e-23,2.171796870559775e-22,-5.321204087120041e-23)
    sum e = 7.860998326471725e-13
    sum de = -3.660314600225495e-28
Info: cfl dt = 1.5639019468517579 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7707e+04 | 2592 |      1 | 4.492e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125348.41174798842 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 349.72703196828536, dt = 1.5639019468517579 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.9%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.9%)
   LB compute        : 132.71 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.640076561758234e-21,6.124944045073046e-21,3.832517908879549e-21)
    sum a = (-1.0786001605311437e-22,4.239357889644154e-25,4.8418856745241834e-23)
    sum e = 7.860946699181711e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.5638563603561866 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1161e+04 | 2592 |      1 | 5.066e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111126.55307271687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 351.29093391513715, dt = 1.5638563603561866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (2.9%)
   patch tree reduce : 1.84 us    (1.2%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.7%)
   LB compute        : 139.84 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 682.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.911613702862194e-21,5.956156021558602e-21,3.987708425283067e-21)
    sum a = (-4.8230192848315955e-23,-2.844963175968035e-23,2.6768910961318984e-23)
    sum e = 7.860890841216405e-13
    sum de = -2.398137151871876e-28
Info: cfl dt = 1.5638114462609671 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3790e+04 | 2592 |      1 | 5.919e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95113.12128819484 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 352.8547902754933, dt = 1.5638114462609671 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.6%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 147.61 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.941601919655824e-21,5.88902272544461e-21,4.012641251940551e-21)
    sum a = (1.3566587117939927e-22,3.653480033388317e-23,4.5884434084530216e-23)
    sum e = 7.86083127079829e-13
    sum de = -5.679798517591285e-28
Info: cfl dt = 1.5637672261769666 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6533e+04 | 2592 |      1 | 4.585e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122786.7081089671 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 354.41860172175427, dt = 1.5637672261769666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.9%)
   patch tree reduce : 1.21 us    (0.8%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 138.02 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.595299635312952e-21,5.996980626837216e-21,4.099340363084553e-21)
    sum a = (9.533069259824176e-23,7.422822811087289e-23,1.634970761486622e-22)
    sum e = 7.860768106645754e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.5637237213649147 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7471e+04 | 2592 |      1 | 4.510e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124820.39628696903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 355.98236894793126, dt = 1.5637237213649147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (2.7%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.9%)
   LB compute        : 148.05 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.466720020841636e-21,6.1425184752059565e-21,4.446964016954147e-21)
    sum a = (1.4300887631893525e-22,1.587856662622554e-22,1.5356419468444103e-22)
    sum e = 7.860701476098807e-13
    sum de = 6.310887241768094e-29
Info: cfl dt = 1.5636809527014583 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6602e+04 | 2592 |      1 | 4.579e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122929.40927083245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 357.5460926692962, dt = 0.23361169994427655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (2.7%)
   patch tree reduce : 1.39 us    (0.8%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 151.42 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.403868004822111e-21,6.245755414815232e-21,4.475072268341138e-21)
    sum a = (4.998891960376426e-23,2.0197376120321458e-23,1.117031313362361e-22)
    sum e = 7.857575014067144e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.563674839296043 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9780e+04 | 2592 |      1 | 4.336e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19396.150683296197 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 260                                                     [SPH][rank=0]
Info: time since start : 74.954307361 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000819907 s
sph::RenderFieldGetter compute custom field took :  0.0007056460000000001 s
rho_t_ampl=-0.00121316, rho_t_phi=3.14159 rad
eps_t_ampl=-5.91574e-06, eps_t_phi=2.87778e-10 rad
vx_t_ampl=1.1228e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 368.96s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 357.77970436924045, dt = 1.563674839296043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.10 us   (5.7%)
   patch tree reduce : 2.14 us    (1.0%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 183.92 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3652530407316842e-21,6.261149087958495e-21,4.644850027196944e-21)
    sum a = (3.3491549140796244e-22,-1.094947313103241e-22,2.7842237252870635e-22)
    sum e = 7.860649408501532e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.5636319877712004 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5163e+04 | 2592 |      1 | 5.739e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98083.86920591291 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 359.3433792085365, dt = 1.5636319877712004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (2.6%)
   patch tree reduce : 2.03 us    (1.1%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.7%)
   LB compute        : 165.55 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.601580506219941e-21,5.988560882963276e-21,5.210547496333202e-21)
    sum a = (5.740894927273594e-23,1.5616021296594348e-23,1.2474593020159363e-22)
    sum e = 7.860560005827181e-13
    sum de = -4.796274303743752e-28
Info: cfl dt = 1.563589144964348 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.4640e+04 | 2592 |      1 | 5.806e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96945.73443217341 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 360.9070111963077, dt = 1.563589144964348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (3.1%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 157.11 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7305709181815803e-21,6.110768322301485e-21,5.2854521781812365e-21)
    sum a = (-2.7261548451606004e-22,-2.669306128988682e-23,1.6022450979695828e-22)
    sum e = 7.860483725439823e-13
    sum de = -9.718766352322865e-28
Info: cfl dt = 1.5635470985507405 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5580e+04 | 2592 |      1 | 5.687e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98983.0996049967 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 362.470600341272, dt = 1.5635470985507405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (2.3%)
   patch tree reduce : 1.19 us    (0.7%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.9%)
   LB compute        : 150.89 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4079759797253484e-21,6.03593899195471e-21,5.563707706557421e-21)
    sum a = (-9.979811530551191e-23,-1.391839264444321e-22,-4.7835553356483465e-23)
    sum e = 7.860404205666945e-13
    sum de = 5.301145283085199e-28
Info: cfl dt = 1.563505874307596 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5536e+04 | 2592 |      1 | 5.692e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98884.96887960807 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 364.03414743982273, dt = 1.563505874307596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (2.7%)
   patch tree reduce : 1.86 us    (1.0%)
   gen split merge   : 992.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.7%)
   LB compute        : 164.96 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4543960961319256e-21,5.7303891023941056e-21,5.326260683850123e-21)
    sum a = (-5.452181316105475e-22,2.55609611749518e-23,8.388740970681647e-23)
    sum e = 7.860321978062825e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.563465491774556 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5332e+04 | 2592 |      1 | 5.718e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98440.05381613094 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 365.59765331413035, dt = 1.563465491774556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (3.0%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 150.17 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.655567957838401e-21,5.899170707197763e-21,5.560390567386416e-21)
    sum a = (3.948790875736489e-23,-9.646349475966903e-23,6.0424242812391e-23)
    sum e = 7.860237204748223e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.5634259700825892 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2189e+04 | 2592 |      1 | 4.967e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113326.40204829622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 367.1611188059049, dt = 1.5634259700825892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (2.7%)
   patch tree reduce : 1.82 us    (1.1%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.9%)
   LB compute        : 155.06 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0570360144367814e-21,5.652954577806938e-21,5.6365174719377e-21)
    sum a = (-4.9141649779971644e-23,-7.158366912073612e-24,-4.3391473519278055e-23)
    sum e = 7.860150054870137e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.5633873279115467 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.9661e+04 | 2592 |      1 | 5.219e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107835.885811501 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 368.72454477598745, dt = 0.2357753547917696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.4%)
   patch tree reduce : 2.18 us    (1.2%)
   gen split merge   : 801.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 166.91 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (73.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.222998200527553e-21,5.7210683319935386e-21,5.545132738366388e-21)
    sum a = (1.2413786660719066e-23,1.2297447527717239e-23,-7.139242895383546e-23)
    sum e = 7.857466903967502e-13
    sum de = 1.464125840090198e-27
Info: cfl dt = 1.5633818770986299 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3740e+04 | 2592 |      1 | 5.926e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14323.354074797677 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 268                                                     [SPH][rank=0]
Info: time since start : 75.582432321 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000825104 s
sph::RenderFieldGetter compute custom field took :  0.000713077 s
rho_t_ampl=-0.00112089, rho_t_phi=3.14159 rad
eps_t_ampl=-4.63437e-06, eps_t_phi=3.84341e-10 rad
vx_t_ampl=1.55836e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 380.14s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 368.9603201307792, dt = 1.5633818770986299 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.84 us   (4.9%)
   patch tree reduce : 2.14 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 215.01 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.176167286630652e-21,5.7425878622434834e-21,5.430218141176857e-21)
    sum a = (7.291655453245532e-24,-3.454800876080887e-23,1.3064631231533404e-23)
    sum e = 7.86008299689335e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.563343958897363 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4394e+04 | 2592 |      1 | 4.765e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118109.72715160453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 370.52370200787783, dt = 1.563343958897363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.3%)
   patch tree reduce : 1.85 us    (1.1%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 156.77 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1531626271725256e-21,5.651953258924274e-21,5.5166619721313945e-21)
    sum a = (4.883098417791436e-22,-7.073785353610602e-23,3.30814346263437e-24)
    sum e = 7.859972094590947e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.563307274943094 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5429e+04 | 2592 |      1 | 4.676e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120353.24275003892 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 372.0870459667752, dt = 1.563307274943094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.4%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 160.73 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0045728442274826e-21,5.5130828463848106e-21,5.5142072437662526e-21)
    sum a = (-4.6882263583191344e-23,-1.9514625877370393e-22,-1.0496902969681028e-23)
    sum e = 7.85987892991467e-13
    sum de = -6.815758221109542e-28
Info: cfl dt = 1.5632715210038728 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4927e+04 | 2592 |      1 | 4.719e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119260.12543490544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 373.6503532417183, dt = 1.5632715210038728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.8%)
   patch tree reduce : 2.13 us    (1.1%)
   gen split merge   : 982.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.6%)
   LB compute        : 168.26 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.564900621028999e-21,5.1107877408364316e-21,5.487006969535113e-21)
    sum a = (-2.5122834017608285e-23,-2.6503794570193375e-22,-1.078460481440525e-22)
    sum e = 7.859783814158216e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.5632367191840038 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5266e+04 | 2592 |      1 | 4.690e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119993.8993357632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 375.21362476272213, dt = 1.5632367191840038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.5%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 158.51 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.582975710603241e-21,4.641824294536644e-21,5.242326493935508e-21)
    sum a = (6.263377985279041e-23,-7.733508471615789e-23,6.332130165886259e-23)
    sum e = 7.859687259628051e-13
    sum de = -1.0349855076499675e-27
Info: cfl dt = 1.563202885684661 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5366e+04 | 2592 |      1 | 4.682e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120207.79181881619 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 376.7768614819061, dt = 1.563202885684661 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.4%)
   patch tree reduce : 1.41 us    (0.8%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 155.38 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.399760029918874e-21,4.6676567972655625e-21,5.475098078582805e-21)
    sum a = (-8.919440508653161e-23,2.722110054441666e-23,-4.0509576590309587e-23)
    sum e = 7.859589455351165e-13
    sum de = -1.3883951931889808e-27
Info: cfl dt = 1.5631700362551086 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2256e+04 | 2592 |      1 | 4.960e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113454.3785414944 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 378.3400643675908, dt = 1.5631700362551086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (2.9%)
   patch tree reduce : 2.20 us    (1.3%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 154.62 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.673351158474453e-21,4.7919250439356e-21,5.3306203580238426e-21)
    sum a = (8.865523338048177e-23,-9.18698541223275e-23,-1.456953731261329e-22)
    sum e = 7.859490595129764e-13
    sum de = -1.8932661725304283e-27
Info: cfl dt = 1.5631381861440863 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5466e+04 | 2592 |      1 | 4.673e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120420.85988744932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 379.9032344038459, dt = 0.23770148847211203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.3%)
   patch tree reduce : 1.91 us    (1.1%)
   gen split merge   : 1.09 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 154.58 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (56.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.426051069299591e-21,4.677003643678699e-21,5.21377670827641e-21)
    sum a = (7.749951403387901e-23,1.3977645368389312e-23,1.2007994756222965e-23)
    sum e = 7.857338630434887e-13
    sum de = -1.1864468014524018e-27
Info: cfl dt = 1.5631338029173099 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8661e+04 | 2592 |      1 | 5.327e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16064.862169455888 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 276                                                     [SPH][rank=0]
Info: time since start : 76.151738957 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000773577 s
sph::RenderFieldGetter compute custom field took :  0.000674119 s
rho_t_ampl=-0.00100005, rho_t_phi=3.14159 rad
eps_t_ampl=-3.4736e-06, eps_t_phi=5.33696e-10 rad
vx_t_ampl=1.95365e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 391.32s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 380.140935892318, dt = 1.5631338029173099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.45 us   (4.5%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 226.79 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3085629870670147e-21,4.711435012429438e-21,5.25128997342627e-21)
    sum a = (-3.995005593397904e-23,-4.6126109364857483e-23,2.893157909942202e-23)
    sum e = 7.859415345270989e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5631027405377091 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6768e+04 | 2592 |      1 | 4.566e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123245.47841287997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 381.7040696952353, dt = 1.5631027405377091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (2.2%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.8%)
   LB compute        : 158.75 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5369663916869874e-21,4.5923591016161e-21,5.309739917381273e-21)
    sum a = (5.115712496687226e-23,4.0292153160418035e-23,1.5443940624240934e-23)
    sum e = 7.859294019285758e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.563073072820092 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6117e+04 | 2592 |      1 | 4.619e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121828.75628557982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 383.26717243577303, dt = 1.563073072820092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.6%)
   patch tree reduce : 1.32 us    (0.9%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (1.0%)
   LB compute        : 133.78 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3233516967186675e-21,4.7228774112074976e-21,5.3233386427770986e-21)
    sum a = (-1.6863236977787553e-22,1.6517900308248595e-23,-7.822113011867892e-23)
    sum e = 7.859193375835065e-13
    sum de = 1.8427790745962836e-27
Info: cfl dt = 1.563044324745292 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7366e+04 | 2592 |      1 | 4.518e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124536.92705693282 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 384.8302455085931, dt = 1.563044324745292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.4%)
   patch tree reduce : 1.92 us    (1.2%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 138.46 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.834383774681341e-21,4.730116569880631e-21,5.1278728742992004e-21)
    sum a = (-6.439250660823871e-23,5.465191240530473e-23,-6.498659050183487e-23)
    sum e = 7.859092236480489e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.5630166363499218 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7464e+04 | 2592 |      1 | 4.511e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124748.15067536746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 386.39328983333843, dt = 1.5630166363499218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (2.3%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 841.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 135.32 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.826989419855514e-21,4.84534416270051e-21,5.036640838224319e-21)
    sum a = (-1.0651208678798974e-22,3.726798760268477e-23,-7.210626240195685e-23)
    sum e = 7.858991064117949e-13
    sum de = 1.0097419586828951e-28
Info: cfl dt = 1.5629900202298102 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8247e+04 | 2592 |      1 | 4.450e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126445.38041208957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 387.95630646968834, dt = 1.5629900202298102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (2.0%)
   patch tree reduce : 1.12 us    (0.8%)
   gen split merge   : 651.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 128.23 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.988843631043049e-21,4.8900001365644125e-21,4.918375386881484e-21)
    sum a = (-5.0707815211830724e-24,6.324641570963666e-23,-4.4727776258042e-23)
    sum e = 7.858890055691997e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.5629644884975473 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8604e+04 | 2592 |      1 | 4.423e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127218.84779177225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 389.51929648991813, dt = 1.5629644884975473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (1.9%)
   patch tree reduce : 631.00 ns  (0.4%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.6%)
   LB compute        : 132.23 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.34 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.989665226023696e-21,5.0091534730766116e-21,4.8698636112463534e-21)
    sum a = (8.331486600627376e-23,2.508662847707927e-24,1.0188551228194563e-22)
    sum e = 7.858789410236073e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.5629400527288801 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7599e+04 | 2592 |      1 | 4.500e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125034.71673500356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 391.08226097841566, dt = 0.2392906754411115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (2.3%)
   patch tree reduce : 1.30 us    (0.9%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 133.61 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 932.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.879571498616946e-21,4.96229447732002e-21,5.008819546063005e-21)
    sum a = (1.069742339646039e-22,7.166901791572279e-23,1.4809904101324696e-22)
    sum e = 7.857203400709886e-13
    sum de = -7.068193710780266e-28
Info: cfl dt = 1.562936844378245 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0068e+04 | 2592 |      1 | 4.315e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19963.33404535301 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 284                                                     [SPH][rank=0]
Info: time since start : 76.68630021 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000785806 s
sph::RenderFieldGetter compute custom field took :  0.0006849250000000001 s
rho_t_ampl=-0.000853721, rho_t_phi=3.14159 rad
eps_t_ampl=-2.46249e-06, eps_t_phi=7.98706e-10 rad
vx_t_ampl=2.29878e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 402.50s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 391.3215516538568, dt = 1.562936844378245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.77 us   (4.8%)
   patch tree reduce : 2.13 us    (0.9%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 217.09 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6906046530680486e-21,5.082593954876999e-21,5.2458182271317194e-21)
    sum a = (-2.3344851129801057e-22,-1.9740263619980317e-22,9.49584757009303e-23)
    sum e = 7.858713580138811e-13
    sum de = -9.592548607487504e-28
Info: cfl dt = 1.5629132419292984 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5160e+04 | 2592 |      1 | 4.699e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119737.80302219893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 392.88448849823504, dt = 1.5629132419292984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.2%)
   patch tree reduce : 1.41 us    (0.8%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 156.80 us  (84.4%)
   LB move op cnt    : 0
   LB apply          : 15.12 us   (8.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.313373648398765e-21,4.5637771842388076e-21,5.3527024125094724e-21)
    sum a = (-7.843664580867992e-23,1.2410090887399137e-22,-6.91974024585937e-23)
    sum e = 7.858593884775653e-13
    sum de = 9.844984097158227e-28
Info: cfl dt = 1.5628912068653118 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5583e+04 | 2592 |      1 | 4.663e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120654.1114266904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 394.44740174016437, dt = 1.5628912068653118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.3%)
   patch tree reduce : 1.45 us    (0.8%)
   gen split merge   : 951.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (1.0%)
   LB compute        : 155.72 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.327340763069771e-21,5.008978964377109e-21,5.1162737028112725e-21)
    sum a = (-6.316011413726763e-23,-1.6981070466894318e-22,-1.3429781468058955e-22)
    sum e = 7.858495867119354e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.562870296547704 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5114e+04 | 2592 |      1 | 5.745e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97928.21398994156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 396.01029294702965, dt = 1.562870296547704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (2.8%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 154.48 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4062138812119194e-21,4.513912627156528e-21,4.855511206443191e-21)
    sum a = (6.598434688324302e-24,-7.550670491944254e-23,-9.07268281539577e-23)
    sum e = 7.858398830694552e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.5628505245064703 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3086e+04 | 2592 |      1 | 6.016e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93525.69341758282 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 397.57316324357737, dt = 1.5628505245064703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.1%)
   patch tree reduce : 2.07 us    (1.1%)
   gen split merge   : 1.03 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.6%)
   LB compute        : 171.01 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.272293899366396e-21,4.469601057243253e-21,4.7477666357927735e-21)
    sum a = (-5.640763039007194e-23,9.633632405221531e-24,-1.3200163388967698e-22)
    sum e = 7.858303162995388e-13
    sum de = 1.3126645462877636e-27
Info: cfl dt = 1.5628318994452886 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5267e+04 | 2592 |      1 | 4.690e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119964.52081657053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 399.13601376808384, dt = 1.5628318994452886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.4%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 155.01 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.420180995882925e-21,4.551171638593348e-21,4.509217095674375e-21)
    sum a = (5.0964563643283026e-24,-3.798131698499123e-23,7.460680230826062e-23)
    sum e = 7.85820904924773e-13
    sum de = -9.087677628146056e-28
Info: cfl dt = 1.5628144295668498 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6004e+04 | 2592 |      1 | 4.628e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121562.69587430236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 400.69884566752916, dt = 1.5628144295668498 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (2.2%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 932.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 154.71 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 682.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.397997931405446e-21,4.4545989254579555e-21,4.787260810258091e-21)
    sum a = (1.7883811992810475e-22,5.267710576877673e-23,-7.481200544147332e-23)
    sum e = 7.85811667390562e-13
    sum de = -9.844984097158227e-28
Info: cfl dt = 1.5627981225156125 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6165e+04 | 2592 |      1 | 4.615e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121911.24849186925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 402.261660097096, dt = 0.2405073182995352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.4%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 781.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.7%)
   LB compute        : 168.27 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2345005302566166e-21,4.538141655697143e-21,4.6525110410531906e-21)
    sum a = (3.478941246178766e-23,3.6506868912727127e-23,-4.3877859866176836e-23)
    sum e = 7.85707514986552e-13
    sum de = 1.1864468014524018e-27
Info: cfl dt = 1.5627962035448806 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6044e+04 | 2592 |      1 | 4.625e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18720.825053382385 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 292                                                     [SPH][rank=0]
Info: time since start : 77.27058129800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008235030000000001 s
sph::RenderFieldGetter compute custom field took :  0.000739677 s
rho_t_ampl=-0.000685668, rho_t_phi=3.14159 rad
eps_t_ampl=-1.62627e-06, eps_t_phi=1.29427e-09 rad
vx_t_ampl=2.58514e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 413.68s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 402.50216741539555, dt = 1.5627962035448806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.34 us   (4.8%)
   patch tree reduce : 1.91 us    (0.8%)
   gen split merge   : 1.11 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.6%)
   LB compute        : 210.65 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (74.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.147411462307994e-21,4.593269555624195e-21,4.587658832432454e-21)
    sum a = (2.4782000474855347e-22,-1.243744061289017e-22,-5.831038376229304e-23)
    sum e = 7.858047922469214e-13
    sum de = -6.563322731438818e-28
Info: cfl dt = 1.5627807530469804 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6753e+04 | 2592 |      1 | 4.567e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123185.18747249812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 404.06496361894045, dt = 1.5627807530469804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (2.1%)
   patch tree reduce : 1.56 us    (1.1%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.9%)
   LB compute        : 132.86 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.611731534925899e-21,4.2731692510498785e-21,4.4852549402099654e-21)
    sum a = (2.637319887878102e-22,-1.4431969741232653e-23,-9.109076786008964e-23)
    sum e = 7.857941689511547e-13
    sum de = -8.077935669463161e-28
Info: cfl dt = 1.5627669774366713 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8306e+04 | 2592 |      1 | 4.446e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126554.72295813767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 405.62774437198743, dt = 1.5627669774366713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (2.3%)
   patch tree reduce : 1.46 us    (0.9%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 146.74 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.246943363518461e-21,4.3365243335272804e-21,4.317287019575764e-21)
    sum a = (4.947542274085965e-23,1.1158387123273319e-22,5.589402699093257e-24)
    sum e = 7.857856091302759e-13
    sum de = -2.3728936029048035e-27
Info: cfl dt = 1.562754381651913 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7056e+04 | 2592 |      1 | 4.543e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123840.41326205753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 407.1905113494241, dt = 1.562754381651913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (1.9%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 641.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 152.44 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1877885249118494e-21,4.609375705664737e-21,4.401566172095677e-21)
    sum a = (-1.7786247588858598e-22,-1.3207826316545543e-22,-9.972650532880544e-23)
    sum e = 7.857772825569217e-13
    sum de = 1.9689968194316455e-27
Info: cfl dt = 1.5627429744979993 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7917e+04 | 2592 |      1 | 4.475e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125707.61080141916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 408.75326573107606, dt = 1.5627429744979993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (2.3%)
   patch tree reduce : 1.44 us    (1.0%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.6%)
   LB compute        : 134.42 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (56.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7095013376229384e-21,4.2125661908221064e-21,4.1634278281581275e-21)
    sum a = (-1.6271431843289986e-23,3.684244713602378e-23,-6.860565831038e-24)
    sum e = 7.85769218696249e-13
    sum de = 1.0097419586828951e-27
Info: cfl dt = 1.5627327606602865 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7368e+04 | 2592 |      1 | 4.518e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124516.63976845492 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 410.31600870557406, dt = 1.5627327606602865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.5%)
   patch tree reduce : 1.57 us    (0.9%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 151.78 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.695534222951933e-21,4.4021396045403104e-21,4.225269394437607e-21)
    sum a = (-5.673498464017364e-23,-1.4766439733995102e-22,8.074614697239092e-24)
    sum e = 7.857614330620911e-13
    sum de = -3.0292258760486853e-27
Info: cfl dt = 1.5627237443167608 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6850e+04 | 2592 |      1 | 4.559e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123391.83388307152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 411.8787414662344, dt = 1.5627237443167608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.5%)
   patch tree reduce : 1.81 us    (1.0%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 157.32 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.750581086655307e-21,4.027206660735113e-21,4.249557634500033e-21)
    sum a = (-8.490028757049177e-23,-1.5888139531609182e-22,1.1384747425113642e-22)
    sum e = 7.857539408173493e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.5627159290782595 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5795e+04 | 2592 |      1 | 4.646e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121100.78173279724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 413.44146521055114, dt = 0.24131796638317837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (3.1%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 135.52 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.914078487804137e-21,3.980086904852828e-21,4.359677955028427e-21)
    sum a = (-1.7767633327578306e-22,1.7226536008292568e-22,-2.2333648362916523e-23)
    sum e = 7.85696707682997e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.5627153558003977 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6557e+04 | 2592 |      1 | 4.583e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18955.74137257432 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 300                                                     [SPH][rank=0]
Info: time since start : 77.81233344500001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008059370000000001 s
sph::RenderFieldGetter compute custom field took :  0.000705036 s
rho_t_ampl=-0.000500178, rho_t_phi=3.14159 rad
eps_t_ampl=-9.857e-07, eps_t_phi=2.29398e-09 rad
vx_t_ampl=2.80559e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 424.86s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 413.6827831769343, dt = 1.5627153558003977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.25 us   (5.2%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 195.58 us  (82.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (83.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.107974903236919e-21,4.2892120163214065e-21,4.3083453439964356e-21)
    sum a = (-2.3023915590485672e-23,7.622264190300593e-23,1.0853598685778576e-22)
    sum e = 7.857484663678509e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.5627083992694397 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6344e+04 | 2592 |      1 | 4.600e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122290.95543095765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 415.2454985327347, dt = 1.5627083992694397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (3.0%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 140.21 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.970768541468806e-21,4.333324606200306e-21,4.580211436565934e-21)
    sum a = (-2.668258073868105e-22,1.347105363419778e-22,-9.28866195105721e-23)
    sum e = 7.857402325126087e-13
    sum de = -1.464125840090198e-27
Info: cfl dt = 1.5627031840205456 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5512e+04 | 2592 |      1 | 4.669e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120484.75308416931 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 416.80820693200417, dt = 1.5627031840205456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (3.1%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 143.64 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6822697947094404e-21,4.589593239021337e-21,4.2776748211162496e-21)
    sum a = (3.0796974352704277e-23,9.390328164095857e-23,5.080268443341879e-23)
    sum e = 7.857337655204347e-13
    sum de = -8.077935669463161e-28
Info: cfl dt = 1.5626991749114092 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6876e+04 | 2592 |      1 | 4.557e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123444.81593093352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 418.37091011602473, dt = 1.5626991749114092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (2.2%)
   patch tree reduce : 1.12 us    (0.7%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 149.48 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.244359670024385e-21,4.704407928211416e-21,4.469336000555082e-21)
    sum a = (-2.2361504637338716e-22,-8.971028389289208e-23,-3.998557415877855e-23)
    sum e = 7.85727640975839e-13
    sum de = 2.8272774843121063e-27
Info: cfl dt = 1.5626963758978767 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8075e+04 | 2592 |      1 | 4.463e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126046.89394684063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 419.93360929093615, dt = 1.5626963758978767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (2.3%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 681.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 133.01 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.61 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.794828307058132e-21,4.420761889209086e-21,4.335913320332309e-21)
    sum a = (-2.147058758019921e-23,-3.5093022496597816e-23,-1.808528579065955e-23)
    sum e = 7.857218782103043e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5626947876072486 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7914e+04 | 2592 |      1 | 4.476e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125696.30528643404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 421.496305666834, dt = 1.5626947876072486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (2.4%)
   patch tree reduce : 691.00 ns  (0.5%)
   gen split merge   : 691.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.6%)
   LB compute        : 129.18 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 2.41 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.762786102812884e-21,4.408518198384204e-21,4.324763289126945e-21)
    sum a = (2.2689179822979726e-22,4.692393505712432e-23,3.512429627204407e-23)
    sum e = 7.857164882003279e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.562694410163022 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7570e+04 | 2592 |      1 | 4.502e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124950.51710930384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 423.0590004544413, dt = 1.562694410163022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (1.7%)
   patch tree reduce : 691.00 ns  (0.4%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.6%)
   LB compute        : 144.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 2.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.328983953031066e-21,4.545968471162197e-21,4.4212269988421984e-21)
    sum a = (-1.7932594194786414e-22,-2.249582618977781e-23,7.692710989004866e-23)
    sum e = 7.857114813347771e-13
    sum de = 1.464125840090198e-27
Info: cfl dt = 1.562695243123744 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7931e+04 | 2592 |      1 | 4.474e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125734.66287929186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 424.6216948646043, dt = 0.24170407386878878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (1.5%)
   patch tree reduce : 410.00 ns  (0.3%)
   gen split merge   : 711.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.3%)
   LB compute        : 144.29 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6411900456770716e-21,4.486335438602005e-21,4.4724831062783996e-21)
    sum a = (3.063329722765343e-23,-7.398241154622851e-24,2.1553996581042267e-23)
    sum e = 7.856890290060038e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5626960328808583 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9009e+04 | 2592 |      1 | 4.393e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19809.279500886136 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 308                                                     [SPH][rank=0]
Info: time since start : 78.542135887 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000787349 s
sph::RenderFieldGetter compute custom field took :  0.000699417 s
rho_t_ampl=-0.000301971, rho_t_phi=3.14159 rad
eps_t_ampl=-5.56545e-07, eps_t_phi=4.24973e-09 rad
vx_t_ampl=2.95472e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 436.04s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 424.8633989384731, dt = 1.5626960328808583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.28 us   (5.3%)
   patch tree reduce : 2.05 us    (1.0%)
   gen split merge   : 1.03 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 183.27 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (76.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5228803684638484e-21,4.476578998206818e-21,4.499473497693554e-21)
    sum a = (1.092400388721705e-22,2.8437897554024133e-25,-5.96815998942482e-23)
    sum e = 7.857079571574624e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.5626977058547629 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4990e+04 | 2592 |      1 | 5.761e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97646.13498725812 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 426.42609497135396, dt = 1.5626977058547629 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (3.3%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 159.09 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.272293899366396e-21,4.4830298025470565e-21,4.3427359262868366e-21)
    sum a = (-9.548153230171999e-23,4.7915926750676966e-23,1.4428945973925515e-22)
    sum e = 7.85702912886352e-13
    sum de = -5.553580772755923e-28
Info: cfl dt = 1.5627011445358754 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4108e+04 | 2592 |      1 | 5.876e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95733.66308078384 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 427.9887926772087, dt = 1.5627011445358754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (2.7%)
   patch tree reduce : 1.59 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 157.36 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (56.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.532739508231617e-21,4.595130981752224e-21,4.7275897836409756e-21)
    sum a = (-3.40788611777434e-22,1.6739491254292464e-22,1.4881046983575318e-22)
    sum e = 7.856991770570539e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.5627057867538598 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5393e+04 | 2592 |      1 | 5.710e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98520.8765980595 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 429.5514938217446, dt = 1.5627057867538598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (2.9%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 1.13 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.6%)
   LB compute        : 165.45 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.348583324014469e-21,4.950106549045094e-21,4.963669259809335e-21)
    sum a = (-1.3998245418319118e-22,-2.1960518246744253e-22,-8.717575202657046e-24)
    sum e = 7.856958562158037e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.5627116315872218 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5413e+04 | 2592 |      1 | 5.708e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98566.54811412175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 431.11419960849844, dt = 1.5627116315872218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (2.9%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 150.18 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.348583324014469e-21,4.304506199447481e-21,4.826961209862146e-21)
    sum a = (4.3251840762455715e-22,5.898807749161269e-23,-1.2592268604716541e-22)
    sum e = 7.856929597160655e-13
    sum de = 7.068193710780266e-28
Info: cfl dt = 1.562718675642656 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5547e+04 | 2592 |      1 | 4.666e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120560.17451821781 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 432.67691124008564, dt = 1.562718675642656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.6%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 142.11 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2854394190567545e-21,4.614346997168732e-21,4.538600581689892e-21)
    sum a = (1.3243405029849333e-22,2.597722459867946e-23,5.926101738238144e-23)
    sum e = 7.856904929230953e-13
    sum de = 1.8175355256292112e-27
Info: cfl dt = 1.5627269150354837 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7611e+04 | 2592 |      1 | 4.499e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125041.90500997944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 434.2396299157283, dt = 1.5627269150354837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.6%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 135.35 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.262434759598627e-21,4.6291822424735866e-21,4.7759043844523466e-21)
    sum a = (-4.0693021707494155e-23,2.9995525599075636e-23,2.0725336084802937e-22)
    sum e = 7.856884604395352e-13
    sum de = -1.868022623563356e-27
Info: cfl dt = 1.5627363453283036 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7041e+04 | 2592 |      1 | 4.544e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123803.94191570237 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 435.8023568307638, dt = 0.24165786924805843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.9%)
   patch tree reduce : 1.63 us    (1.1%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 136.84 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.336378307856892e-21,4.639580553947405e-21,4.941624599205945e-21)
    sum a = (-4.612646038810361e-23,1.3082310432966417e-23,-2.556949531230414e-23)
    sum e = 7.856852664486979e-13
    sum de = -7.068193710780266e-28
Info: cfl dt = 1.5627384758203569 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9388e+04 | 2592 |      1 | 4.364e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19932.898136341595 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 316                                                     [SPH][rank=0]
Info: time since start : 79.135174484 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000656944 s
sph::RenderFieldGetter compute custom field took :  0.000633519 s
rho_t_ampl=-9.60818e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-3.49205e-07, eps_t_phi=7.26599e-09 rad
vx_t_ampl=3.0289e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 447.22s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 436.04401470001187, dt = 1.5627384758203569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.49 us   (5.8%)
   patch tree reduce : 2.40 us    (1.1%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 188.37 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5532793827478015e-21,4.6579300434077615e-21,4.873534427408083e-21)
    sum a = (2.630307446344061e-22,-1.607363024409787e-23,-6.686173438443151e-23)
    sum e = 7.856872374274019e-13
    sum de = -6.563322731438818e-28
Info: cfl dt = 1.5627487072590651 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7338e+04 | 2592 |      1 | 4.521e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124450.6153105821 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 437.60675317583224, dt = 1.5627487072590651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (3.0%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 144.06 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (53.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8960033982298944e-21,4.610007948677189e-21,4.736781853058751e-21)
    sum a = (1.866533014798585e-22,7.778060843475906e-24,1.1199401759409671e-23)
    sum e = 7.856858612797877e-13
    sum de = 1.7165613297609217e-27
Info: cfl dt = 1.5627606868004362 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6988e+04 | 2592 |      1 | 4.548e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123690.97177473055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 439.1695018830913, dt = 1.5627606868004362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (2.7%)
   patch tree reduce : 1.56 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 141.35 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.705393362719701e-21,4.640877133526239e-21,4.815278807641495e-21)
    sum a = (-2.173218013244806e-22,1.2384142747583708e-22,-2.790399473486136e-23)
    sum e = 7.856852197566267e-13
    sum de = 2.5748419946413825e-27
Info: cfl dt = 1.5627656103532508 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8186e+04 | 2592 |      1 | 4.455e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126293.60257948795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 440.73226256989176, dt = 1.5627656103532508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.6%)
   patch tree reduce : 1.45 us    (0.9%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.7%)
   LB compute        : 139.65 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.290368988940639e-21,4.925057530201529e-21,4.7411167788975865e-21)
    sum a = (-1.907692997715783e-22,3.517733075839063e-23,3.604664358073471e-23)
    sum e = 7.856850220411302e-13
    sum de = -2.069971015299935e-27
Info: cfl dt = 1.562751852772155 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7647e+04 | 2592 |      1 | 4.496e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125123.21590767709 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 442.295028180245, dt = 1.562751852772155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.8%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 141.67 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6666594900771405e-21,4.9107967595120495e-21,4.8474186670997086e-21)
    sum a = (-3.1030856126980365e-22,8.601331960123543e-23,-1.1040735252932433e-23)
    sum e = 7.856852686381376e-13
    sum de = -4.4428646182047385e-27
Info: cfl dt = 1.5627390098289629 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5205e+04 | 2592 |      1 | 5.734e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98117.32078798614 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 443.8577800330172, dt = 1.5627390098289629 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.7%)
   patch tree reduce : 11.83 us   (7.1%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 138.08 us  (83.1%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.236846406646425e-21,5.0848866381359834e-21,4.793371935165096e-21)
    sum a = (-2.1771464648307385e-23,-1.1027672334688174e-22,-4.653611659877051e-23)
    sum e = 7.856859587236424e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.5627273756200406 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4558e+04 | 2592 |      1 | 5.817e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96712.25421218472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 445.4205190428462, dt = 1.5627273756200406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (3.1%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (1.0%)
   LB compute        : 144.63 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.967363252994083e-21,4.7591932294502484e-21,4.6929136632522366e-21)
    sum a = (2.408380520907473e-22,-1.665111112284459e-22,-1.0296319554250577e-22)
    sum e = 7.856870906085771e-13
    sum de = -2.6253290925755273e-27
Info: cfl dt = 1.5627169555039846 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.9568e+04 | 2592 |      1 | 5.229e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107584.78148755665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 446.98324641846625, dt = 0.24138404308439476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (1.1%)
   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.28 us    (0.4%)
   LB compute        : 326.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.676518629844909e-21,4.675050349752541e-21,4.62396992032806e-21)
    sum a = (-1.7098161792566416e-22,-1.2315688199971296e-22,2.909126745778594e-23)
    sum e = 7.85685804029272e-13
    sum de = -1.3631516442219084e-27
Info: cfl dt = 1.562716037155117 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8914e+04 | 2592 |      1 | 4.400e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19751.11583211499 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 324                                                     [SPH][rank=0]
Info: time since start : 79.70434337500001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000812125 s
sph::RenderFieldGetter compute custom field took :  0.000633498 s
rho_t_ampl=0.000112273, rho_t_phi=3.14159 rad
eps_t_ampl=-3.68453e-07, eps_t_phi=7.1871e-09 rad
vx_t_ampl=3.0264e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 458.41s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 447.22463046155065, dt = 1.562716037155117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.25 us   (5.0%)
   patch tree reduce : 2.08 us    (0.9%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 197.10 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9887247224909146e-21,4.4878518590252704e-21,4.685369230618561e-21)
    sum a = (1.7302597731110315e-22,4.499770439641517e-23,4.5323347518162666e-23)
    sum e = 7.856882859158832e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.5627064428903392 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7289e+04 | 2592 |      1 | 4.524e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124341.69585474738 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 448.78734649870574, dt = 1.5627064428903392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (2.6%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 141.09 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4957677341024845e-21,4.689591939038921e-21,4.7688793837117385e-21)
    sum a = (2.6057558775864343e-22,1.1266641125310575e-22,9.586918712795318e-23)
    sum e = 7.85690687700606e-13
    sum de = -1.1612032524853294e-27
Info: cfl dt = 1.5626986538150702 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7929e+04 | 2592 |      1 | 4.474e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125731.4833200773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 450.35005294159606, dt = 1.5626986538150702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (2.3%)
   patch tree reduce : 1.63 us    (1.1%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.8%)
   LB compute        : 133.49 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0553928244754865e-21,4.918510445199495e-21,4.9581881879884266e-21)
    sum a = (1.764503595155983e-23,-4.26409006299605e-23,1.6155619751629019e-22)
    sum e = 7.856931922929284e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.562692091686431 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7713e+04 | 2592 |      1 | 4.491e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125260.11612895946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 451.9127515954111, dt = 1.562692091686431 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.3%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 151.15 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.153984222153173e-21,4.730506406268543e-21,5.2619752815636245e-21)
    sum a = (2.1296961453429587e-22,1.1827535998971024e-22,9.935005523425956e-23)
    sum e = 7.856961226741574e-13
    sum de = -1.6155871338926322e-27
Info: cfl dt = 1.562686759318665 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5169e+04 | 2592 |      1 | 4.698e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119738.79781851344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 453.47544368709754, dt = 1.562686759318665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.5%)
   patch tree reduce : 1.43 us    (0.8%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 152.12 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6569192588615056e-21,5.041111030573365e-21,5.3686237741166e-21)
    sum a = (-8.5676951575635e-23,9.02851753483714e-23,1.2219308357700948e-22)
    sum e = 7.856994724709843e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.5626826587841054 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6402e+04 | 2592 |      1 | 4.596e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122414.81471663211 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 455.0381304464162, dt = 1.5626826587841054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.5%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 149.81 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.064430369262608e-21,5.16028723374274e-21,5.577421035813344e-21)
    sum a = (2.3253063565556855e-22,-5.519371051742826e-23,-8.229952364382566e-24)
    sum e = 7.857032348333333e-13
    sum de = -1.8175355256292112e-27
Info: cfl dt = 1.562679791596294 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7969e+04 | 2592 |      1 | 4.471e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125815.4869913221 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 456.6008131052003, dt = 1.562679791596294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (2.0%)
   patch tree reduce : 961.00 ns  (0.6%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.6%)
   LB compute        : 150.24 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.557506266203172e-21,4.960349206782345e-21,5.462655347281745e-21)
    sum a = (2.4123440748180176e-22,-9.574866099202203e-23,-9.441892653618375e-23)
    sum e = 7.85707402045792e-13
    sum de = 9.592548607487504e-28
Info: cfl dt = 1.5626781586401026 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8644e+04 | 2592 |      1 | 4.420e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127280.44476799227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 458.1634928967966, dt = 0.2417533262928373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (2.0%)
   patch tree reduce : 601.00 ns  (0.4%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.8%)
   LB compute        : 131.99 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 1.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.472881983196491e-21,4.905522183923401e-21,5.372486373628102e-21)
    sum a = (-1.429928295419695e-22,3.817780224701037e-23,1.6556694692552598e-22)
    sum e = 7.856905895769505e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.5626785827923357 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8889e+04 | 2592 |      1 | 4.402e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19772.911017835933 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 332                                                     [SPH][rank=0]
Info: time since start : 80.24760547800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009307330000000001 s
sph::RenderFieldGetter compute custom field took :  0.0009580140000000001 s
rho_t_ampl=0.000317825, rho_t_phi=3.14159 rad
eps_t_ampl=-6.13327e-07, eps_t_phi=4.52723e-09 rad
vx_t_ampl=2.94745e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 469.59s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 458.4052462230894, dt = 1.5626785827923357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.77 us   (5.7%)
   patch tree reduce : 2.29 us    (1.1%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.7%)
   LB compute        : 180.06 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.540252771609577e-21,4.981389740739862e-21,5.662640520455817e-21)
    sum a = (-1.3220297671018625e-22,-4.521054044660431e-24,1.0277694973858806e-22)
    sum e = 7.857108905799925e-13
    sum de = -1.3126645462877636e-27
Info: cfl dt = 1.5626778119494418 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6106e+04 | 2592 |      1 | 4.620e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121772.39429123544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 459.96792480588175, dt = 1.5626778119494418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (2.8%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 135.62 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7793369109779654e-21,4.940937420686854e-21,5.7741874874834784e-21)
    sum a = (-1.1418886488841374e-23,-1.5275230378092726e-22,-4.967801105087239e-24)
    sum e = 7.857167999324465e-13
    sum de = -8.077935669463161e-28
Info: cfl dt = 1.5626788374878224 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6650e+04 | 2592 |      1 | 4.575e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122951.71808191246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 461.53060261783116, dt = 1.5626788374878224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.9%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 841.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (1.1%)
   LB compute        : 131.22 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7234684522939434e-21,4.586383883628183e-21,5.68223924407934e-21)
    sum a = (6.814103370744239e-23,-3.638669359710692e-24,7.228607752834037e-23)
    sum e = 7.857221863240464e-13
    sum de = 8.330371159133885e-28
Info: cfl dt = 1.5626810969514044 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6841e+04 | 2592 |      1 | 4.560e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123367.45564315227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 463.09328145531896, dt = 1.5626810969514044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.8%)
   patch tree reduce : 1.89 us    (1.3%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.9%)
   LB compute        : 133.35 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.64623852411309e-21,4.697174041155247e-21,5.855560831632729e-21)
    sum a = (1.020575015022922e-24,-5.775980954378359e-23,7.712574277046281e-23)
    sum e = 7.857279360150993e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.5626845876606437 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7633e+04 | 2592 |      1 | 4.497e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125086.4152245646 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 464.65596255227035, dt = 1.5626845876606437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (2.4%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 148.64 us  (84.0%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5977644202548936e-21,4.5646453148726554e-21,5.97986546786698e-21)
    sum a = (6.181218487214302e-24,1.900683690317868e-22,-1.2905123075088805e-22)
    sum e = 7.857340385017367e-13
    sum de = -5.301145283085199e-28
Info: cfl dt = 1.5626893071997807 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6436e+04 | 2592 |      1 | 4.593e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122489.30697941138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 466.218647139931, dt = 1.5626893071997807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (2.6%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 152.05 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.569830190912883e-21,5.055350940452789e-21,5.6171037000654904e-21)
    sum a = (-6.760186200139255e-23,7.156157972931916e-23,-1.558318367796127e-22)
    sum e = 7.857404816193228e-13
    sum de = -1.4136387421560532e-27
Info: cfl dt = 1.5626952525951932 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7257e+04 | 2592 |      1 | 4.527e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124270.77368788303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 467.7813364471308, dt = 1.5626952525951932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (2.4%)
   patch tree reduce : 1.88 us    (1.2%)
   gen split merge   : 1.00 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 135.00 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.744008326810128e-21,5.074558932480814e-21,5.352661145186574e-21)
    sum a = (-7.559315693034562e-23,1.078392806085039e-22,6.339728403825826e-23)
    sum e = 7.857472524187375e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.5627024202515978 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7158e+04 | 2592 |      1 | 4.535e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124056.54457512932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 469.344031699726, dt = 0.24183028490210745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (2.6%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 134.06 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7620834163843705e-21,5.128960715750165e-21,5.539286681612993e-21)
    sum a = (-1.974074502328929e-22,4.891718295061844e-23,-1.2463694636643229e-23)
    sum e = 7.856991445176569e-13
    sum de = -9.592548607487504e-28
Info: cfl dt = 1.562704174012698 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8014e+04 | 2592 |      1 | 4.468e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19485.631608491945 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 340                                                     [SPH][rank=0]
Info: time since start : 80.79221832200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008158410000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006879000000000001 s
rho_t_ampl=0.000515387, rho_t_phi=3.14159 rad
eps_t_ampl=-1.07717e-06, eps_t_phi=2.6913e-09 rad
vx_t_ampl=2.7942e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 480.77s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 469.5858619846281, dt = 1.562704174012698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.99 us   (4.3%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1.19 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 229.26 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.203279920992016e-21,5.198292420308468e-21,5.51063687293752e-21)
    sum a = (1.5770772401957984e-22,-1.3143669296389276e-22,1.7186078109851604e-22)
    sum e = 7.857526798622172e-13
    sum de = -5.301145283085199e-28
Info: cfl dt = 1.5627122174518542 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6109e+04 | 2592 |      1 | 4.620e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121780.74931128102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 471.1485661586408, dt = 1.5627122174518542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.4%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 150.02 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.635557789364673e-21,4.8519885312878986e-21,5.923228129063374e-21)
    sum a = (-2.051869277058978e-22,2.888326581947345e-22,-9.114333357399044e-24)
    sum e = 7.857614773614461e-13
    sum de = 7.573064690121713e-28
Info: cfl dt = 1.5627220017229786 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5739e+04 | 2592 |      1 | 4.650e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120977.43075921673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 472.71127837609265, dt = 1.5627220017229786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (2.0%)
   patch tree reduce : 992.00 ns  (0.7%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.7%)
   LB compute        : 137.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.294476963843875e-21,5.63172709889777e-21,5.767578948587419e-21)
    sum a = (-1.7023062876366614e-22,9.534335450819131e-23,1.4178366047773653e-22)
    sum e = 7.857691947831413e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.5627329948557838 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8084e+04 | 2592 |      1 | 4.462e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126068.9199911933 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 474.27400037781564, dt = 1.5627329948557838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (2.5%)
   patch tree reduce : 1.46 us    (1.0%)
   gen split merge   : 601.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 134.72 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4908381642186e-21,5.62958004013975e-21,6.107054760438143e-21)
    sum a = (6.582387911358533e-23,-3.749462325423725e-23,2.695988207011082e-23)
    sum e = 7.857771750163058e-13
    sum de = 1.4893693890572703e-27
Info: cfl dt = 1.5627451887728878 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8672e+04 | 2592 |      1 | 4.418e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127346.15372992815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 475.8367333726714, dt = 1.5627451887728878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (1.9%)
   patch tree reduce : 561.00 ns  (0.4%)
   gen split merge   : 591.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 571.00 ns  (0.4%)
   LB compute        : 126.94 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 1.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.201636731030721e-21,5.467202704023132e-21,6.0594667328773175e-21)
    sum a = (2.1000096079562857e-22,1.1591955993034997e-22,1.5652930633589954e-22)
    sum e = 7.857854065067084e-13
    sum de = 0
Info: cfl dt = 1.5627585766588987 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7227e+04 | 2592 |      1 | 4.529e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124209.4355963714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 477.3994785614443, dt = 1.5627585766588987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (2.1%)
   patch tree reduce : 911.00 ns  (0.6%)
   gen split merge   : 681.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 150.39 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.695534222951933e-21,5.768257891355624e-21,6.405326246043768e-21)
    sum a = (-7.65752196806507e-23,-4.9950908800826596e-23,-5.582512317138992e-23)
    sum e = 7.857938730029499e-13
    sum de = 8.582806648804608e-28
Info: cfl dt = 1.5627731511575274 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6680e+04 | 2592 |      1 | 4.573e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123024.5015067742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 478.9622371381032, dt = 1.5627731511575274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (1.5%)
   patch tree reduce : 671.00 ns  (0.4%)
   gen split merge   : 441.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.5%)
   LB compute        : 144.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0553928244754865e-21,5.560530758856045e-21,6.15215488938976e-21)
    sum a = (-2.544376955692367e-23,-2.5179714827334135e-22,-2.2402275363199796e-22)
    sum e = 7.858025576298615e-13
    sum de = -9.34011311781678e-28
Info: cfl dt = 1.562788904315678 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6908e+04 | 2592 |      1 | 4.555e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123520.79717140265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 480.5250102892607, dt = 0.24146745690615035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (1.9%)
   patch tree reduce : 781.00 ns  (0.5%)
   gen split merge   : 701.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.5%)
   LB compute        : 140.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 2.39 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.075932698991671e-21,5.342012168846986e-21,5.966633314295468e-21)
    sum a = (9.949001718776914e-23,-3.163240466386684e-22,-3.271994800094684e-24)
    sum e = 7.857106062226451e-13
    sum de = -1.1864468014524018e-27
Info: cfl dt = 1.5627919337534242 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8088e+04 | 2592 |      1 | 4.462e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19481.01674632141 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 348                                                     [SPH][rank=0]
Info: time since start : 81.336888352 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000799456 s
sph::RenderFieldGetter compute custom field took :  0.000686597 s
rho_t_ampl=0.000699983, rho_t_phi=3.14159 rad
eps_t_ampl=-1.74779e-06, eps_t_phi=1.71003e-09 rad
vx_t_ampl=2.57067e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 491.95s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 480.76647774616686, dt = 1.5627919337534242 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.56 us   (5.6%)
   patch tree reduce : 2.25 us    (1.1%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 179.66 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8976465881911886e-21,4.83986519129026e-21,5.9881719293870295e-21)
    sum a = (1.6060898129499094e-22,1.7715621711738008e-22,4.2324203073505065e-23)
    sum e = 7.858093752144114e-13
    sum de = -8.330371159133885e-28
Info: cfl dt = 1.5628085534166043 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6367e+04 | 2592 |      1 | 4.598e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122347.06698642019 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 482.3292696799203, dt = 1.5628085534166043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.5%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.8%)
   LB compute        : 135.46 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.556684671222525e-21,5.5023515642889525e-21,6.089945241089892e-21)
    sum a = (6.785861043284486e-23,-3.571287940307867e-23,-3.641331327406672e-23)
    sum e = 7.858201558154532e-13
    sum de = -1.0602290566170399e-27
Info: cfl dt = 1.5628268133717491 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7184e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124121.26625774615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 483.8920782333369, dt = 1.5628268133717491 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (2.3%)
   patch tree reduce : 962.00 ns  (0.7%)
   gen split merge   : 570.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (1.0%)
   LB compute        : 129.01 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.522177682035334e-21,5.2802031933302365e-21,5.971511706730379e-21)
    sum a = (-6.785861043284486e-23,-1.0152472343393966e-22,6.52696340595644e-23)
    sum e = 7.858294230719563e-13
    sum de = 7.825500179792437e-28
Info: cfl dt = 1.5628462259413345 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7867e+04 | 2592 |      1 | 4.479e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125606.13558768725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 485.4549050467087, dt = 1.5628462259413345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.7%)
   patch tree reduce : 941.00 ns  (0.6%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (1.1%)
   LB compute        : 132.47 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7045717677390535e-21,5.0701236033274754e-21,6.15297452626615e-21)
    sum a = (2.8822578914836033e-22,9.314246382806903e-23,-1.0202842751138584e-22)
    sum e = 7.85838824796426e-13
    sum de = 9.087677628146056e-28
Info: cfl dt = 1.5628667779009724 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7164e+04 | 2592 |      1 | 4.534e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124080.97129375508 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 487.01775127265, dt = 1.5628667779009724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.5%)
   patch tree reduce : 1.29 us    (0.8%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 147.37 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.964314690175761e-21,5.367823409596426e-21,5.862787114440905e-21)
    sum a = (-8.405943645748546e-23,-4.910830257158966e-23,-1.6269634365121897e-23)
    sum e = 7.858483515491231e-13
    sum de = 9.087677628146056e-28
Info: cfl dt = 1.5628884582499372 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6577e+04 | 2592 |      1 | 4.581e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122808.32903972847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 488.580618050551, dt = 1.5628884582499372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (2.3%)
   patch tree reduce : 1.61 us    (1.0%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 138.69 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4145487395705275e-21,5.179872325029461e-21,5.904374275032242e-21)
    sum a = (2.6059965792409205e-23,-1.8747594953024427e-22,1.285152397408472e-22)
    sum e = 7.858579846193753e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.5629112554788034 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6408e+04 | 2592 |      1 | 4.595e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122443.23614314871 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 490.1435065088009, dt = 1.5629112554788034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.4%)
   patch tree reduce : 1.84 us    (1.0%)
   gen split merge   : 992.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 160.50 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.266661643053998e-21,4.778802390902419e-21,6.218373494059154e-21)
    sum a = (-2.173632220675235e-22,4.442414808292559e-23,1.2200131569261978e-23)
    sum e = 7.858677048975176e-13
    sum de = -1.0097419586828951e-28
Info: cfl dt = 1.5629351575229509 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7613e+04 | 2592 |      1 | 4.499e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125060.1969106166 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 491.7064177642797, dt = 0.2406757434259248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.9%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 145.79 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5353232017256924e-21,4.9706785171152106e-21,6.130414673922212e-21)
    sum a = (2.4686361684139363e-22,-8.763044608650532e-24,3.756159747471309e-23)
    sum e = 7.857238184231977e-13
    sum de = 1.5146129380243427e-27
Info: cfl dt = 1.56293936898614 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep 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.5507e+04 | 2592 |      1 | 5.696e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15211.844178043868 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 356                                                     [SPH][rank=0]
Info: time since start : 81.894569546 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000684694 s
sph::RenderFieldGetter compute custom field took :  0.000572998 s
rho_t_ampl=0.000866978, rho_t_phi=3.14159 rad
eps_t_ampl=-2.60783e-06, eps_t_phi=1.18721e-09 rad
vx_t_ampl=2.28266e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 503.13s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 491.94709350770563, dt = 1.56293936898614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.44 us   (5.3%)
   patch tree reduce : 2.28 us    (1.1%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 187.14 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0933051021374002e-21,4.950571905577102e-21,6.1921731182079964e-21)
    sum a = (1.9949353123844288e-22,4.662077633791633e-23,-9.468275352644257e-23)
    sum e = 7.858752261066923e-13
    sum de = -1.2369338993865465e-27
Info: cfl dt = 1.562964105794247 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7258e+04 | 2592 |      1 | 4.527e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124292.66655975208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 493.51003287669175, dt = 1.562964105794247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (2.1%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.5%)
   LB compute        : 151.34 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.922413346162744e-21,5.0666719416021386e-21,5.940842421755754e-21)
    sum a = (-4.311576409378599e-22,1.5743926645556034e-22,-1.3923965867997648e-22)
    sum e = 7.858868902785248e-13
    sum de = -8.835242138475332e-28
Info: cfl dt = 1.5629903403884946 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8057e+04 | 2592 |      1 | 4.465e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126028.8268972696 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 495.072996982486, dt = 1.5629903403884946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (1.9%)
   patch tree reduce : 901.00 ns  (0.6%)
   gen split merge   : 681.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 147.95 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.936261552281616e-21,5.399387419888094e-21,5.688391758529033e-21)
    sum a = (-9.526650549037868e-23,-1.8068462756817362e-22,1.7886107951197767e-22)
    sum e = 7.858967743828937e-13
    sum de = 9.844984097158227e-28
Info: cfl dt = 1.5630176419142954 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7844e+04 | 2592 |      1 | 4.481e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125568.15097743343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 496.6359873228745, dt = 1.5630176419142954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (2.1%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 152.07 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.863961193984646e-21,4.8527314970614135e-21,6.216548971790613e-21)
    sum a = (1.6999313646457276e-22,9.609461947416841e-24,9.340908327060703e-23)
    sum e = 7.859066496204854e-13
    sum de = -1.4893693890572703e-27
Info: cfl dt = 1.563045992395351 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7479e+04 | 2592 |      1 | 4.509e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124778.1156648557 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 498.1990049647888, dt = 1.563045992395351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.7%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 136.32 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.490135477790087e-21,5.016438308649647e-21,6.295770176219392e-21)
    sum a = (-8.886063212564361e-23,-1.5688221763704707e-22,-1.554639604365589e-23)
    sum e = 7.859165116054546e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5630753769760846 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7533e+04 | 2592 |      1 | 4.505e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124898.57223041079 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 499.76205095718416, dt = 1.5630753769760846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.5%)
   patch tree reduce : 1.68 us    (1.1%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 140.68 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.716895692448764e-21,4.6411258585692085e-21,6.1863187747166476e-21)
    sum a = (-2.4497651587021917e-22,-2.074307184413145e-22,-1.2505792141160638e-23)
    sum e = 7.859263410340411e-13
    sum de = -1.135959703518257e-27
Info: cfl dt = 1.563105780338172 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7521e+04 | 2592 |      1 | 4.506e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124874.63278710686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 501.32512633416025, dt = 1.563105780338172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (2.3%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 152.52 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.245181265005032e-21,4.277356657499096e-21,6.169147245278382e-21)
    sum a = (3.3257908068174647e-22,-2.1315736182479537e-23,1.2331255058763004e-22)
    sum e = 7.859361184694517e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.563137186664604 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7802e+04 | 2592 |      1 | 4.484e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125487.8455695309 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 502.8882321144984, dt = 0.23947715474599818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (2.0%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 134.68 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.764548201326313e-21,4.417750711511459e-21,6.3048270023357514e-21)
    sum a = (1.9714428309065428e-22,3.756159347498033e-23,-1.1324096442248725e-23)
    sum e = 7.857374517573203e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5631424508577292 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9751e+04 | 2592 |      1 | 4.338e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19873.761614462022 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 364                                                     [SPH][rank=0]
Info: time since start : 82.43479254100001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00079557 s
sph::RenderFieldGetter compute custom field took :  0.0006936980000000001 s
rho_t_ampl=0.00101219, rho_t_phi=3.14159 rad
eps_t_ampl=-3.63516e-06, eps_t_phi=9.13827e-10 rad
vx_t_ampl=1.93757e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 514.31s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 503.1277092692444, dt = 1.5631424508577292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.77 us   (5.2%)
   patch tree reduce : 2.07 us    (0.9%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (0.7%)
   LB compute        : 199.99 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.415370334551174e-21,4.483525647955299e-21,6.2710046258915356e-21)
    sum a = (7.734546497500762e-23,1.7465221786422782e-22,2.181881555527349e-22)
    sum e = 7.859435894094288e-13
    sum de = -1.2621774483536189e-27
Info: cfl dt = 1.5631746388991452 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4064e+04 | 2592 |      1 | 5.882e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95664.77402647081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 504.69085172010216, dt = 1.5631746388991452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (2.5%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 151.86 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.397295244976932e-21,4.863639293703896e-21,6.791450989202494e-21)
    sum a = (1.0783434120996913e-22,-4.2473562050380304e-23,1.8826394277887443e-22)
    sum e = 7.859549532469494e-13
    sum de = -1.464125840090198e-27
Info: cfl dt = 1.5632081444421526 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3786e+04 | 2592 |      1 | 5.920e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95063.70134272228 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 506.25402635900133, dt = 1.5632081444421526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (3.1%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 154.73 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2691264279959404e-21,4.627551087595016e-21,7.06235833261021e-21)
    sum a = (6.626677015784056e-23,-6.31099679592496e-23,5.0854854729796225e-23)
    sum e = 7.859644628522614e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.563242604356839 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.3969e+04 | 2592 |      1 | 5.895e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95461.86206915313 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 507.8172345034435, dt = 1.563242604356839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (3.0%)
   patch tree reduce : 1.81 us    (1.0%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 157.62 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1491735608214223e-21,4.512776515347352e-21,7.034457305383488e-21)
    sum a = (-3.767783231562612e-23,-1.5739069988214988e-22,2.0559315815399873e-22)
    sum e = 7.859738195798842e-13
    sum de = -6.815758221109542e-28
Info: cfl dt = 1.5632779964374108 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8928e+04 | 2592 |      1 | 5.298e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106231.7619593245 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 509.38047710780035, dt = 1.5632779964374108 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (3.5%)
   patch tree reduce : 1.75 us    (1.1%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 134.19 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2420137936345765e-21,4.193034856238221e-21,7.4768033199627e-21)
    sum a = (8.146627729981715e-23,-3.278321431782038e-23,1.1747333520141752e-22)
    sum e = 7.859830265211866e-13
    sum de = -9.087677628146056e-28
Info: cfl dt = 1.5633143024056633 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5821e+04 | 2592 |      1 | 4.643e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121199.16447952029 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 510.94375510423777, dt = 1.5633143024056633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (2.8%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.9%)
   LB compute        : 134.37 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0620844928727997e-21,4.239199026552194e-21,7.591573174898104e-21)
    sum a = (1.9588621577653796e-22,7.031928338818953e-23,7.31763847729114e-24)
    sum e = 7.85992065700763e-13
    sum de = 3.0292258760486853e-28
Info: cfl dt = 1.5633515035783543 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7061e+04 | 2592 |      1 | 4.542e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123895.76639094872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 512.5070694066434, dt = 1.5633515035783543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (3.3%)
   patch tree reduce : 1.30 us    (0.9%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (1.0%)
   LB compute        : 134.31 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6915451566008294e-21,4.429715589586561e-21,7.516909227924751e-21)
    sum a = (2.473642762827256e-22,2.3964808328637944e-23,8.483642003916809e-23)
    sum e = 7.860009192911166e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5633895808426297 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6969e+04 | 2592 |      1 | 4.550e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123697.98913061777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 514.0704209102217, dt = 0.2379041205614385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.4%)
   patch tree reduce : 1.57 us    (0.9%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 152.15 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6102072535167384e-21,4.399183387053792e-21,7.597686713680662e-21)
    sum a = (1.2490811190154758e-23,1.1138689704547836e-22,5.899076474765966e-23)
    sum e = 7.857501415524334e-13
    sum de = -6.815758221109542e-28
Info: cfl dt = 1.5633957384266526 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7794e+04 | 2592 |      1 | 4.485e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19096.418924284437 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 372                                                     [SPH][rank=0]
Info: time since start : 83.23406265 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000863873 s
sph::RenderFieldGetter compute custom field took :  0.0006924660000000001 s
rho_t_ampl=0.00113199, rho_t_phi=3.14159 rad
eps_t_ampl=-4.80346e-06, eps_t_phi=7.37629e-10 rad
vx_t_ampl=1.54423e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 525.49s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 514.3083250307832, dt = 1.5633957384266526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.13 us   (5.8%)
   patch tree reduce : 2.11 us    (1.0%)
   gen split merge   : 972.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 183.04 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.588024189039259e-21,4.583719717482441e-21,7.68683822994739e-21)
    sum a = (7.187672338507347e-23,5.865332668025333e-23,2.0416697929092328e-22)
    sum e = 7.860075955216512e-13
    sum de = -8.330371159133885e-28
Info: cfl dt = 1.5634345247944408 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5875e+04 | 2592 |      1 | 4.639e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121326.28693879479 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 515.8717207692098, dt = 1.5634345247944408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (3.2%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 931.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 137.29 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 762.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4072732932968347e-21,4.634193249750572e-21,8.119523871762721e-21)
    sum a = (-1.985820743067872e-22,-8.886529572019929e-23,-2.826772677379782e-23)
    sum e = 7.860175089178641e-13
    sum de = 5.174927538249837e-28
Info: cfl dt = 1.5634744157882856 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7306e+04 | 2592 |      1 | 4.523e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124436.62882885354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 517.4351552940042, dt = 1.5634744157882856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (2.5%)
   patch tree reduce : 1.83 us    (1.2%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 133.55 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.924467333614363e-21,4.379942900302411e-21,7.89362978204879e-21)
    sum a = (-4.6253229926133185e-23,-4.7321995418231435e-23,1.44859469016632e-22)
    sum e = 7.860256932858813e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.5635151249750066 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2249e+04 | 2592 |      1 | 4.961e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113457.53198592487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 518.9986297097925, dt = 1.5635151249750066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (3.1%)
   patch tree reduce : 1.79 us    (1.2%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 136.09 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 692.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8916035343884673e-21,4.338418454963377e-21,8.25545972349951e-21)
    sum a = (-9.272469601900083e-23,8.436713340580409e-23,1.0571357617807134e-23)
    sum e = 7.86033594440971e-13
    sum de = -6.310887241768094e-29
Info: cfl dt = 1.5635566265490097 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6947e+04 | 2592 |      1 | 4.552e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123662.1320715321 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 520.5621448347674, dt = 1.5635566265490097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.9%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (1.1%)
   LB compute        : 136.44 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0255235162339912e-21,4.573289111869979e-21,8.167007893116214e-21)
    sum a = (-3.310899397793231e-22,-2.429617427298108e-23,4.8851700407029085e-23)
    sum e = 7.860412246217347e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.5635988993260939 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8167e+04 | 2592 |      1 | 4.456e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126315.83725636557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 522.1257014613165, dt = 1.5635988993260939 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.4%)
   patch tree reduce : 1.68 us    (1.1%)
   gen split merge   : 981.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 133.17 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7813908984295845e-21,4.450351343595116e-21,8.27331909992074e-21)
    sum a = (1.4719387575160787e-22,-1.1442971698143434e-22,7.104899888761277e-23)
    sum e = 7.860485689683244e-13
    sum de = 4.67005655890839e-28
Info: cfl dt = 1.5636405967873808 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7706e+04 | 2592 |      1 | 4.492e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125317.18949115409 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 523.6893003606425, dt = 1.5636405967873808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (2.3%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 133.67 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.175875397692462e-21,4.2009551191060106e-21,8.40176803467814e-21)
    sum a = (-1.620852847758417e-22,6.56741426260235e-23,-1.255593797991604e-22)
    sum e = 7.860556125256598e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.5636825904123113 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8364e+04 | 2592 |      1 | 4.441e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126750.69602213356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 525.2529409574299, dt = 0.23599983489202714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.3%)
   patch tree reduce : 1.21 us    (0.7%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.8%)
   LB compute        : 164.58 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4400181839705965e-21,4.357263818039202e-21,8.218423620484965e-21)
    sum a = (2.763126619289733e-22,-8.635457687919262e-23,8.690537966097825e-23)
    sum e = 7.857606280327099e-13
    sum de = -6.563322731438818e-28
Info: cfl dt = 1.5636891748019923 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8926e+04 | 2592 |      1 | 4.399e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19314.486773450157 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 380                                                     [SPH][rank=0]
Info: time since start : 83.781291549 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00081539 s
sph::RenderFieldGetter compute custom field took :  0.000756983 s
rho_t_ampl=0.0012234, rho_t_phi=3.14159 rad
eps_t_ampl=-6.08293e-06, eps_t_phi=6.14449e-10 rad
vx_t_ampl=1.11269e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 536.67s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 525.488940792322, dt = 1.5636891748019923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.26 us   (5.1%)
   patch tree reduce : 1.96 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 193.93 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9700658550402925e-21,4.204292472618556e-21,8.379387445969419e-21)
    sum a = (-1.634203766193937e-22,7.265780025388229e-24,3.3146175526665946e-23)
    sum e = 7.860608335758331e-13
    sum de = 8.204153414298523e-28
Info: cfl dt = 1.563731671338495 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6466e+04 | 2592 |      1 | 4.590e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122631.34490846244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 527.052629967124, dt = 1.563731671338495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.9%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (1.1%)
   LB compute        : 138.83 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.569419393422559e-21,4.288850362085541e-21,8.38918782764827e-21)
    sum a = (-4.516204909246088e-23,1.995802841264141e-23,1.5861704935435177e-22)
    sum e = 7.860682939770116e-13
    sum de = 6.815758221109542e-28
Info: cfl dt = 1.5637750306181801 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6383e+04 | 2592 |      1 | 4.597e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122454.61342735591 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 528.6163616384624, dt = 1.5637750306181801 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.0%)
   patch tree reduce : 1.36 us    (0.7%)
   gen split merge   : 1.09 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.7%)
   LB compute        : 173.26 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.555452278751554e-21,4.329985873667866e-21,8.735330598476661e-21)
    sum a = (-7.399489794455501e-23,1.4224835938311382e-22,-4.5834738264225013e-23)
    sum e = 7.860743368677263e-13
    sum de = -1.3883951931889808e-28
Info: cfl dt = 1.5638190560270628 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3712e+04 | 2592 |      1 | 4.826e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116658.23530704182 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 530.1801366690806, dt = 1.5638190560270628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.6%)
   patch tree reduce : 1.40 us    (0.8%)
   gen split merge   : 1.14 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 158.96 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6807455133002796e-21,4.648049240491089e-21,8.503795061129857e-21)
    sum a = (-9.923326875631684e-24,1.448803316825681e-23,1.0139188783791496e-23)
    sum e = 7.860799928326402e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.5638637200163648 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4992e+04 | 2592 |      1 | 4.713e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119441.84184271957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 531.7439557251078, dt = 1.5638637200163648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (2.9%)
   patch tree reduce : 2.01 us    (1.2%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.9%)
   LB compute        : 149.27 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.653632878938916e-21,4.570813294768873e-21,8.563417917498019e-21)
    sum a = (1.2439461503864296e-23,1.7452690256536076e-22,7.927728839916431e-23)
    sum e = 7.860852840182748e-13
    sum de = -5.427363027920561e-28
Info: cfl dt = 1.5639090000374478 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6302e+04 | 2592 |      1 | 4.604e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122289.09742696585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 533.3078194451241, dt = 1.5639090000374478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.8%)
   patch tree reduce : 1.36 us    (0.9%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 133.64 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.611731534925899e-21,4.968902941243948e-21,8.741461665153692e-21)
    sum a = (-1.6498654205125277e-22,-2.9471460429153724e-23,7.713676793954734e-23)
    sum e = 7.860902001620723e-13
    sum de = 2.9030081312133234e-28
Info: cfl dt = 1.5639548732725643 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7553e+04 | 2592 |      1 | 4.504e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125010.69183235298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 534.8717284451616, dt = 1.5639548732725643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (2.3%)
   patch tree reduce : 1.86 us    (1.1%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 149.07 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0155454679140885e-21,4.7632815470517025e-21,8.860426299675711e-21)
    sum a = (4.318508617027811e-23,1.333879308967523e-22,-2.092277423929865e-23)
    sum e = 7.860947316465652e-13
    sum de = 1.9563750449481093e-28
Info: cfl dt = 1.5640013166331153 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6694e+04 | 2592 |      1 | 4.572e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123147.42939889882 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 536.4356833184341, dt = 0.23387323542658578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.2%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 571.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 149.96 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.844037515703947e-21,4.921831325692561e-21,8.778852673339465e-21)
    sum a = (-4.65998403085938e-23,-8.688045984806769e-23,1.9309767601479826e-22)
    sum e = 7.857678876197918e-13
    sum de = 2.7136815139602806e-28
Info: cfl dt = 1.5640084207735947 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7957e+04 | 2592 |      1 | 5.405e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15577.435871539434 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 388                                                     [SPH][rank=0]
Info: time since start : 84.339920088 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000878555 s
sph::RenderFieldGetter compute custom field took :  0.000710282 s
rho_t_ampl=0.00128418, rho_t_phi=3.14159 rad
eps_t_ampl=-7.441e-06, eps_t_phi=5.24966e-10 rad
vx_t_ampl=6.53908e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 547.85s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 536.6695565538607, dt = 1.5640084207735947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.19 us   (5.1%)
   patch tree reduce : 2.08 us    (1.0%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.6%)
   LB compute        : 192.45 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (74.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9224998363557725e-21,4.7601945483329124e-21,9.105885892232637e-21)
    sum a = (-3.609882946219443e-23,5.849591782745474e-23,-1.4243040442336937e-22)
    sum e = 7.860979895415726e-13
    sum de = -2.0194839173657902e-28
Info: cfl dt = 1.5640553916449982 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7183e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124214.50401221763 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 538.2335649746343, dt = 1.5640553916449982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (2.4%)
   patch tree reduce : 1.19 us    (0.8%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 140.15 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.981038478726899e-21,4.9653862900719e-21,8.620732478654802e-21)
    sum a = (-1.323666538352371e-22,1.3994013080894395e-22,-3.5676675262180655e-23)
    sum e = 7.861022438214231e-13
    sum de = 4.417621069237666e-29
Info: cfl dt = 1.5641029755851412 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8386e+04 | 2592 |      1 | 4.439e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126831.05021400502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 539.7976203662793, dt = 1.5641029755851412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.4%)
   patch tree reduce : 1.28 us    (0.8%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 138.18 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.243743473788899e-21,5.247933927190923e-21,8.64841485755429e-21)
    sum a = (-1.6166164986394538e-22,-6.323001790942476e-23,-6.073295411396925e-23)
    sum e = 7.861055469696193e-13
    sum de = 4.417621069237666e-29
Info: cfl dt = 1.5641510609181968 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8589e+04 | 2592 |      1 | 4.424e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127275.64114932546 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 541.3617233418644, dt = 1.5641510609181968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.4%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 912.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.9%)
   LB compute        : 153.14 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.531301717015484e-21,4.99015689733511e-21,8.53382404278953e-21)
    sum a = (-2.922952517868794e-22,-2.0485455883799432e-22,-5.407046555688626e-23)
    sum e = 7.861083964961016e-13
    sum de = 1.7039395552773855e-28
Info: cfl dt = 1.5641996179381392 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8114e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126248.0984249391 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 542.9258744027826, dt = 1.5641996179381392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.6%)
   patch tree reduce : 1.19 us    (0.8%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 136.08 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.092040291307323e-21,4.5589743838929526e-21,8.454457610496342e-21)
    sum a = (2.031650338082109e-22,-1.922117044360889e-22,-1.5042242968601644e-22)
    sum e = 7.861108242168781e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5642486223475642 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7949e+04 | 2592 |      1 | 4.473e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125895.12824907109 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 544.4900740207207, dt = 1.5642486223475642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.6%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 139.45 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.384852411715088e-21,4.268169075347345e-21,8.143802679350659e-21)
    sum a = (1.2162173197895803e-22,-4.9236024887001576e-23,2.3152225970730692e-23)
    sum e = 7.861128254804634e-13
    sum de = -9.781875224740546e-29
Info: cfl dt = 1.5642975565707617 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8529e+04 | 2592 |      1 | 4.429e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127159.22346865572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 546.0543226430683, dt = 1.5642975565707617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (2.4%)
   patch tree reduce : 1.67 us    (1.1%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 138.76 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.258583533126843e-21,4.303017058545058e-21,8.315776607858136e-21)
    sum a = (-1.7430651011297153e-22,2.621536879808708e-22,-1.2654125288958865e-23)
    sum e = 7.861143962280158e-13
    sum de = -3.7865323450608567e-29
Info: cfl dt = 1.564344237778415 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8579e+04 | 2592 |      1 | 4.425e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127271.3660122569 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 547.618620199639, dt = 0.23155211576045076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (3.5%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 136.69 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.532688158545326e-21,4.607276787237615e-21,8.284840624482294e-21)
    sum a = (4.398100630778027e-23,-3.861727081461587e-23,-4.4874851639995994e-23)
    sum e = 7.857712260141585e-13
    sum de = -1.5777218104420236e-28
Info: cfl dt = 1.5643512042376635 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8136e+04 | 2592 |      1 | 4.459e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18696.47095139856 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 396                                                     [SPH][rank=0]
Info: time since start : 84.881766021 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008670180000000001 s
sph::RenderFieldGetter compute custom field took :  0.000785876 s
rho_t_ampl=0.00131285, rho_t_phi=3.14159 rad
eps_t_ampl=-8.84318e-06, eps_t_phi=4.58121e-10 rad
vx_t_ampl=1.79546e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 559.03s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 547.8501723153995, dt = 1.5643512042376635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.29 us   (5.5%)
   patch tree reduce : 1.99 us    (0.9%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 197.42 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.442466759732986e-21,4.512026328524202e-21,8.210910207599794e-21)
    sum a = (2.4528461398796193e-22,-3.3100288601428377e-23,1.5585363837252712e-22)
    sum e = 7.861153816369829e-13
    sum de = -5.206481974458678e-29
Info: cfl dt = 1.5643983067133218 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7685e+04 | 2592 |      1 | 4.493e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125333.07960897726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 549.4145235196372, dt = 1.5643983067133218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.8%)
   patch tree reduce : 1.92 us    (1.2%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.7%)
   LB compute        : 139.57 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.901472139819829e-21,4.464588846457995e-21,8.611732303103296e-21)
    sum a = (4.590661954367257e-23,-3.088598381868628e-23,-6.916416612318299e-23)
    sum e = 7.861159976484674e-13
    sum de = 2.406025760924086e-29
Info: cfl dt = 1.5644457679387105 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0004e+04 | 2592 |      1 | 4.320e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130375.35607545915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 550.9789218263505, dt = 1.5644457679387105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.6%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 130.10 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.98899768010192e-21,4.417963331306256e-21,8.327519979952187e-21)
    sum a = (-1.137395551333722e-23,-8.97339779620056e-23,6.255404480686655e-23)
    sum e = 7.861162367024491e-13
    sum de = 1.6960509462251754e-29
Info: cfl dt = 1.564450359791247 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9838e+04 | 2592 |      1 | 4.332e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130017.67529191985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 552.5433675942893, dt = 1.564450359791247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (2.6%)
   patch tree reduce : 1.79 us    (1.2%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (1.0%)
   LB compute        : 132.51 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.045893132511751e-21,4.2315768074934535e-21,8.52841567668171e-21)
    sum a = (2.969552358177388e-22,1.348220614418899e-22,1.3826280857715848e-22)
    sum e = 7.861159795017436e-13
    sum de = -3.470987982972452e-29
Info: cfl dt = 1.564403208263822 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0216e+04 | 2592 |      1 | 4.305e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130840.07946480125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 554.1078179540806, dt = 1.564403208263822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.0%)
   patch tree reduce : 1.13 us    (0.5%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.7%)
   LB compute        : 190.92 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3418375837832336e-21,4.618142059921137e-21,8.803935759363238e-21)
    sum a = (3.467387566763412e-23,9.710837460898088e-23,-1.0114300529201221e-23)
    sum e = 7.861152618854859e-13
    sum de = -3.155443620884047e-29
Info: cfl dt = 1.564356015357001 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9944e+04 | 2592 |      1 | 4.324e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130246.06748033657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 555.6722211623444, dt = 1.564356015357001 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (2.3%)
   patch tree reduce : 1.42 us    (1.0%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (1.0%)
   LB compute        : 132.94 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.495578544536875e-21,4.740538851227542e-21,8.672052579729769e-21)
    sum a = (-1.4843910564415156e-22,1.2546373155398733e-22,7.70472553348872e-23)
    sum e = 7.861141094918244e-13
    sum de = 2.208810534618833e-29
Info: cfl dt = 1.5643075607683556 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0888e+04 | 2592 |      1 | 4.257e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132292.90052454337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 557.2365771777014, dt = 1.5643075607683556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (2.4%)
   patch tree reduce : 1.42 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (1.0%)
   LB compute        : 129.65 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.869301561358854e-21,4.958972393318682e-21,8.8607540358982e-21)
    sum a = (1.5091672800766633e-22,2.99136494269167e-23,-9.388005307221922e-23)
    sum e = 7.861125242787635e-13
    sum de = -4.1020767071492614e-29
Info: cfl dt = 1.5642581404778293 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0471e+04 | 2592 |      1 | 4.286e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131382.94442684902 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 558.8008847384698, dt = 0.22990333846848898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.5%)
   patch tree reduce : 1.62 us    (1.1%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.9%)
   LB compute        : 129.91 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.607315461904919e-21,4.891139457728983e-21,8.705479257839714e-21)
    sum a = (5.101591332957349e-23,-1.3962250491737775e-22,-1.2293689285004993e-23)
    sum e = 7.857704029293915e-13
    sum de = 1.135959703518257e-28
Info: cfl dt = 1.56425098084393 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0254e+04 | 2592 |      1 | 4.302e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19239.861652948017 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 404                                                     [SPH][rank=0]
Info: time since start : 85.421672743 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00081492 s
sph::RenderFieldGetter compute custom field took :  0.0006892710000000001 s
rho_t_ampl=0.00130875, rho_t_phi=3.14159 rad
eps_t_ampl=-1.0254e-05, eps_t_phi=4.15631e-10 rad
vx_t_ampl=-2.98387e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 570.21s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 559.0307880769383, dt = 1.56425098084393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.06 us   (4.9%)
   patch tree reduce : 2.05 us    (0.9%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.6%)
   LB compute        : 198.02 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5302909324692275e-21,4.653205872269039e-21,8.695627331022374e-21)
    sum a = (-4.0348016002730115e-23,-1.0202194786207743e-22,-7.777668536600188e-23)
    sum e = 7.861111103064823e-13
    sum de = 2.398137151871876e-28
Info: cfl dt = 1.5642020288127079 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9047e+04 | 2592 |      1 | 4.390e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128284.70139747263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 560.5950390577822, dt = 1.5642020288127079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (2.3%)
   patch tree reduce : 1.32 us    (0.7%)
   gen split merge   : 11.90 us   (6.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.8%)
   LB compute        : 156.58 us  (84.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.667599993609921e-21,4.523103418663672e-21,8.522752961553599e-21)
    sum a = (-6.169664807798948e-23,2.388838053872067e-22,-7.235767584524e-23)
    sum e = 7.861079825625674e-13
    sum de = -2.8398992587956425e-28
Info: cfl dt = 1.5641536602332018 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8740e+04 | 2592 |      1 | 4.413e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127613.78391981994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 562.1592410865949, dt = 1.5641536602332018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (2.2%)
   patch tree reduce : 1.18 us    (0.8%)
   gen split merge   : 550.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.6%)
   LB compute        : 131.52 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 1.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.786731265803792e-21,5.163382657019436e-21,8.41381265087783e-21)
    sum a = (-2.9474719930724893e-23,5.371207273689083e-23,1.8621019287515246e-22)
    sum e = 7.861051031535127e-13
    sum de = 9.466330862652142e-29
Info: cfl dt = 1.5641058100086218 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0232e+04 | 2592 |      1 | 4.303e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130849.5456324918 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 563.723394746828, dt = 1.5641058100086218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (2.1%)
   patch tree reduce : 801.00 ns  (0.6%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.9%)
   LB compute        : 130.64 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.51 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.805011754123197e-21,5.10247230101277e-21,8.907285034575547e-21)
    sum a = (1.0918227047509373e-22,-2.4206964222287007e-23,-7.917062328494514e-23)
    sum e = 7.861017714882126e-13
    sum de = -2.7136815139602806e-28
Info: cfl dt = 1.5640585070129192 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9614e+04 | 2592 |      1 | 4.348e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129502.81669882333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 565.2875005568367, dt = 1.5640585070129192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (1.7%)
   patch tree reduce : 671.00 ns  (0.5%)
   gen split merge   : 591.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.5%)
   LB compute        : 128.69 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.524437068232115e-21,5.003738087020088e-21,8.57591570951055e-21)
    sum a = (-7.512459104294516e-23,-1.3046781865840644e-23,9.170207740748386e-23)
    sum e = 7.860980344566561e-13
    sum de = -1.072850831100576e-28
Info: cfl dt = 1.564011774005205 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9162e+04 | 2592 |      1 | 4.381e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128516.76343895358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 566.8515590638495, dt = 1.564011774005205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (1.7%)
   patch tree reduce : 411.00 ns  (0.3%)
   gen split merge   : 431.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.4%)
   LB compute        : 141.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 1.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.791660835687676e-21,4.992067266132884e-21,8.852966288844123e-21)
    sum a = (8.481684433026977e-23,4.3534304153995664e-23,8.163375472602675e-23)
    sum e = 7.860938996224653e-13
    sum de = -3.9758589623138995e-28
Info: cfl dt = 1.563965633439692 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8035e+04 | 2592 |      1 | 4.466e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126066.61804904953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 568.4155708378547, dt = 1.563965633439692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (2.1%)
   patch tree reduce : 561.00 ns  (0.4%)
   gen split merge   : 541.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.7%)
   LB compute        : 120.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 1.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5418959615708715e-21,5.1043802627939994e-21,8.972765188155283e-21)
    sum a = (1.6406224769802445e-22,2.3920278522557935e-23,9.784046231366046e-23)
    sum e = 7.860893754392341e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.5639201074372586 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8756e+04 | 2592 |      1 | 4.411e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127627.75093179307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 569.9795364712944, dt = 0.23186736718253087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (2.2%)
   patch tree reduce : 1.40 us    (1.0%)
   gen split merge   : 711.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.7%)
   LB compute        : 132.34 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 2.43 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.412083954628585e-21,5.094569263357128e-21,9.008124565404523e-21)
    sum a = (1.882351125192592e-22,-8.6461338092193e-23,4.2836177571293267e-23)
    sum e = 7.857657191554868e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.5639135612280815 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0815e+04 | 2592 |      1 | 4.262e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19584.686841214876 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 412                                                     [SPH][rank=0]
Info: time since start : 85.95141710600001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008017090000000001 s
sph::RenderFieldGetter compute custom field took :  0.000697874 s
rho_t_ampl=0.00127206, rho_t_phi=3.14159 rad
eps_t_ampl=-1.16376e-05, eps_t_phi=3.81708e-10 rad
vx_t_ampl=-7.67805e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 581.39s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 570.2114038384769, dt = 1.5639135612280815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.78 us   (5.3%)
   patch tree reduce : 1.99 us    (1.0%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 177.21 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.109737001750348e-21,4.9466147703773434e-21,9.068739795076132e-21)
    sum a = (4.763967145597565e-23,8.101004737220912e-23,7.841815459445206e-23)
    sum e = 7.860857650260971e-13
    sum de = 7.825500179792437e-28
Info: cfl dt = 1.5638686058601678 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7946e+04 | 2592 |      1 | 4.473e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125863.98664559664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 571.775317399705, dt = 1.5638686058601678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (1.7%)
   patch tree reduce : 981.00 ns  (0.7%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (1.0%)
   LB compute        : 130.98 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 2.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1475303708601277e-21,5.2042618213397336e-21,9.219199053377038e-21)
    sum a = (5.407121966385595e-23,5.415937664481164e-23,1.2071940136308227e-22)
    sum e = 7.860792581244802e-13
    sum de = -4.543838814073028e-28
Info: cfl dt = 1.5638244789603797 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9374e+04 | 2592 |      1 | 4.366e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128962.13185407352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 573.3391860055652, dt = 1.5638244789603797 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (1.6%)
   patch tree reduce : 601.00 ns  (0.4%)
   gen split merge   : 550.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.6%)
   LB compute        : 127.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 2.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0900187222148107e-21,5.267896920075188e-21,9.441059804219212e-21)
    sum a = (1.8091778222286845e-22,-7.163516924556063e-23,1.21277339479333e-22)
    sum e = 7.860736096669618e-13
    sum de = -3.407879110554771e-28
Info: cfl dt = 1.5637810283822047 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8624e+04 | 2592 |      1 | 4.421e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127330.28829346698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 574.9030104845256, dt = 1.5637810283822047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (2.1%)
   patch tree reduce : 921.00 ns  (0.6%)
   gen split merge   : 621.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.6%)
   LB compute        : 143.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 1.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6927775490718006e-21,5.057552558252492e-21,9.631147265511298e-21)
    sum a = (1.522261450080731e-22,1.1563347598475712e-22,-1.0038283020286341e-22)
    sum e = 7.860675767314178e-13
    sum de = -7.699282434957075e-28
Info: cfl dt = 1.563738280401983 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7747e+04 | 2592 |      1 | 4.489e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125421.90398850085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 576.4667915129078, dt = 1.563738280401983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (2.0%)
   patch tree reduce : 1.18 us    (0.8%)
   gen split merge   : 792.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.7%)
   LB compute        : 129.82 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 2.41 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.425348382871077e-21,5.384820155758569e-21,9.300860807179202e-21)
    sum a = (-3.4925489130457383e-22,-2.630568206469755e-24,4.528975207561857e-23)
    sum e = 7.860612097380497e-13
    sum de = 2.7767903863779616e-28
Info: cfl dt = 1.5636962552563054 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8438e+04 | 2592 |      1 | 4.435e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126919.5370423772 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 578.0305297933097, dt = 1.5636962552563054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (2.2%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 711.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 135.66 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.423175486867325e-21,5.288215349069245e-21,9.485577119558306e-21)
    sum a = (1.399664074062254e-22,-9.257706567091576e-23,9.648912530773357e-23)
    sum e = 7.860545213284828e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.5636549728193858 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8532e+04 | 2592 |      1 | 4.428e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127120.66481329227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 579.594226048566, dt = 1.5636549728193858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (2.1%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 591.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 139.89 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.817659986130203e-21,5.0731724909509714e-21,9.67648295426591e-21)
    sum a = (1.9511597048218104e-22,-1.3004969982609211e-22,-5.486067402961357e-23)
    sum e = 7.860475249384686e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.5636141260340684 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8752e+04 | 2592 |      1 | 4.412e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127594.42237274244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 581.1578810213854, dt = 0.23413857863033627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (2.3%)
   patch tree reduce : 1.07 us    (0.7%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.8%)
   LB compute        : 130.97 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.50 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7207117784138116e-21,5.013388618687302e-21,9.545308520841946e-21)
    sum a = (3.575221907973381e-23,1.611824529868051e-22,-1.3378780223700818e-22)
    sum e = 7.85757454741265e-13
    sum de = -9.34011311781678e-28
Info: cfl dt = 1.5636081154147758 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1150e+04 | 2592 |      1 | 4.239e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19885.498704838945 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 420                                                     [SPH][rank=0]
Info: time since start : 86.480949952 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007874490000000001 s
sph::RenderFieldGetter compute custom field took :  0.000688901 s
rho_t_ampl=0.00120376, rho_t_phi=3.14159 rad
eps_t_ampl=-1.29593e-05, eps_t_phi=3.53617e-10 rad
vx_t_ampl=-1.21687e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 592.57s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 581.3920196000157, dt = 1.5636081154147758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.35 us   (4.0%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 231.43 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6451250401942523e-21,5.299489814565395e-21,9.326876884713347e-21)
    sum a = (4.9398398211423953e-23,-1.0245756771052005e-22,6.570026580324432e-23)
    sum e = 7.860420851294637e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.5635665917736106 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6352e+04 | 2592 |      1 | 4.600e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122378.4053963913 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 582.9556277154305, dt = 1.5635665917736106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (2.1%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 154.80 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.60815326606512e-21,4.933186827412387e-21,9.585564206452268e-21)
    sum a = (2.4161311141819394e-22,-9.129237073627188e-23,7.913052343471246e-23)
    sum e = 7.860328546828038e-13
    sum de = -5.932234007262009e-28
Info: cfl dt = 1.563526129678429 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6407e+04 | 2592 |      1 | 4.595e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122494.58857043977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 584.5191943072041, dt = 1.563526129678429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (2.9%)
   patch tree reduce : 1.28 us    (0.8%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (1.0%)
   LB compute        : 135.02 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1131422902250713e-21,4.7991737742604626e-21,9.719786398573924e-21)
    sum a = (-3.34029709319452e-23,7.11794909259108e-23,-1.2992652451570957e-23)
    sum e = 7.860250162206071e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.5634864873436578 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7331e+04 | 2592 |      1 | 4.521e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124498.73632869401 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 586.0827204368825, dt = 1.5634864873436578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (3.1%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 145.35 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3378485174321307e-21,5.037571111574716e-21,9.627454065706852e-21)
    sum a = (1.2272575023420296e-23,4.644634285768062e-23,-1.3968473112356986e-22)
    sum e = 7.860168971485035e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.56344768874895 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8187e+04 | 2592 |      1 | 4.455e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126353.27033867077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 587.6462069242261, dt = 1.56344768874895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (2.6%)
   patch tree reduce : 1.15 us    (0.8%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 132.97 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2864988311416694e-21,5.090759758505455e-21,9.310023619149188e-21)
    sum a = (2.582889220410213e-23,9.453637713843618e-23,-2.746265554616e-22)
    sum e = 7.860085483390084e-13
    sum de = -4.543838814073028e-28
Info: cfl dt = 1.5634097518966077 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.7030e+04 | 2592 |      1 | 5.511e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102122.71206646395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 589.2096546129751, dt = 1.5634097518966077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (2.7%)
   patch tree reduce : 1.80 us    (1.1%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.7%)
   LB compute        : 139.21 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2183064477479362e-21,5.276221987965029e-21,8.775182542522392e-21)
    sum a = (-1.241892162934811e-22,5.78939129603483e-23,1.358584736379707e-23)
    sum e = 7.859999862164796e-13
    sum de = -2.069971015299935e-27
Info: cfl dt = 1.5633726943763062 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1376e+04 | 2592 |      1 | 5.045e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111559.04101153866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 590.7730643648717, dt = 1.5633726943763062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (2.4%)
   patch tree reduce : 2.05 us    (1.3%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 141.34 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.588024189039259e-21,5.338066266391104e-21,9.021719325918661e-21)
    sum a = (-7.884744329900362e-23,-5.1589535459921724e-23,2.1117911793473026e-23)
    sum e = 7.859912278289347e-13
    sum de = 5.048709793414476e-28
Info: cfl dt = 1.563336533322403 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.7895e+04 | 2592 |      1 | 5.412e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103996.65259971879 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 592.336437059248, dt = 0.23619830230643402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (3.0%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 137.82 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.500113526109989e-21,5.2402226485200224e-21,9.032595052763144e-21)
    sum a = (1.3020996701103772e-22,2.226893980733524e-22,-1.5615811209906456e-22)
    sum e = 7.857464392749311e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.563331462807419 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0263e+04 | 2592 |      1 | 4.301e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19769.311923938156 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 428                                                     [SPH][rank=0]
Info: time since start : 87.044473167 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000832136 s
sph::RenderFieldGetter compute custom field took :  0.0006946200000000001 s
rho_t_ampl=0.00110566, rho_t_phi=3.14159 rad
eps_t_ampl=-1.41858e-05, eps_t_phi=3.31525e-10 rad
vx_t_ampl=-1.63426e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 603.75s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 592.5726353615545, dt = 1.563331462807419 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.40 us   (5.2%)
   patch tree reduce : 2.22 us    (1.0%)
   gen split merge   : 832.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 193.16 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3062171106772063e-21,5.6208072671725644e-21,8.76753201500493e-21)
    sum a = (1.047148477678236e-22,-1.5659021644244808e-22,-7.520152411209352e-23)
    sum e = 7.859845103795608e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.5632960296871652 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5362e+04 | 2592 |      1 | 4.682e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120207.70553901256 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 594.135966824362, dt = 1.5632960296871652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.9%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (1.0%)
   LB compute        : 131.05 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2380247272834736e-21,5.079453199455374e-21,8.713250761495005e-21)
    sum a = (1.8959587920595643e-22,8.642844219941318e-23,-3.775578387684025e-23)
    sum e = 7.859734820909145e-13
    sum de = -2.271919407036514e-28
Info: cfl dt = 1.5632618580025208 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4658e+04 | 2592 |      1 | 4.742e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118676.54250446112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 595.6992628540492, dt = 1.5632618580025208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.8%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 1.19 us    (0.8%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 134.82 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 842.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.819011287153308e-21,5.404573738203431e-21,8.683497973160603e-21)
    sum a = (3.244529928262809e-22,1.106640900355265e-22,-3.628056589295271e-23)
    sum e = 7.859642498470162e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.5632286287055555 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6746e+04 | 2592 |      1 | 4.568e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123206.37239902804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 597.2625247120517, dt = 1.5632286287055555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.7%)
   patch tree reduce : 1.37 us    (0.9%)
   gen split merge   : 882.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 130.48 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1674864674999324e-21,5.5965509591111074e-21,8.627936229894261e-21)
    sum a = (-2.820381519503597e-23,1.2027224818231486e-22,-5.001477111683099e-23)
    sum e = 7.859548663061535e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.563196362050022 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8110e+04 | 2592 |      1 | 4.461e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126165.09178800126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 598.8257533407573, dt = 1.563196362050022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.5%)
   patch tree reduce : 1.21 us    (0.8%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 141.00 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5322746389073709e-21,5.7920584709512535e-21,8.539018470236621e-21)
    sum a = (3.9620134199562823e-22,1.0791397334066177e-22,-2.3138253550579295e-23)
    sum e = 7.859453796820808e-13
    sum de = -1.8932661725304283e-27
Info: cfl dt = 1.5631650726920934 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6796e+04 | 2592 |      1 | 4.564e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123309.73626583384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 600.3889497028073, dt = 1.5631650726920934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.4%)
   patch tree reduce : 1.27 us    (0.7%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (1.0%)
   LB compute        : 142.46 us  (82.4%)
   LB move op cnt    : 0
   LB apply          : 16.22 us   (9.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.414310922466259e-22,5.95107561197124e-21,8.523856197684983e-21)
    sum a = (5.0720652633403337e-23,-2.012992951088721e-22,-5.928968964060554e-23)
    sum e = 7.859358085191287e-13
    sum de = -1.1107161545511846e-27
Info: cfl dt = 1.5631347748414417 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8665e+04 | 2592 |      1 | 6.704e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83944.2548015716 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 601.9521147754994, dt = 1.5631347748414417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (3.3%)
   patch tree reduce : 1.26 us    (0.8%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 143.44 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.788720416537199e-22,5.394769157477346e-21,8.402923090906564e-21)
    sum a = (2.4044490605508593e-23,2.5708741961570932e-23,5.1904651168505553e-23)
    sum e = 7.859261717548312e-13
    sum de = 1.7670484276950664e-28
Info: cfl dt = 1.5631054822133075 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9842e+04 | 2592 |      1 | 6.506e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86497.43136136752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 603.5152495503407, dt = 0.23800157275252332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (2.7%)
   patch tree reduce : 1.59 us    (0.9%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 151.03 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.197172030471082e-22,5.57832823918878e-21,8.502182349959965e-21)
    sum a = (3.1671202761799384e-22,1.2931194925509087e-22,1.8531328713676984e-23)
    sum e = 7.857338112666982e-13
    sum de = 1.0854726055841122e-27
Info: cfl dt = 1.563101492339461 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.2042e+04 | 2592 |      1 | 6.165e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13897.303561526813 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 436                                                     [SPH][rank=0]
Info: time since start : 87.887601583 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008446850000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007025320000000001 s
rho_t_ampl=0.000980273, rho_t_phi=3.14159 rad
eps_t_ampl=-1.52861e-05, eps_t_phi=3.18802e-10 rad
vx_t_ampl=-2.00952e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 614.93s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 603.7532511230933, dt = 1.563101492339461 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.77 us   (4.6%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 210.92 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (76.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.73356540916598e-22,5.792729226228422e-21,8.527177245910776e-21)
    sum a = (1.0878431040634267e-22,-1.0267299569128549e-22,1.2422154240246016e-22)
    sum e = 7.859188571852092e-13
    sum de = -9.592548607487504e-28
Info: cfl dt = 1.5630729836413788 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4948e+04 | 2592 |      1 | 4.717e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119290.8386591031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 605.3163526154327, dt = 1.5630729836413788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (3.6%)
   patch tree reduce : 1.97 us    (1.3%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 134.28 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (57.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1525788492961457e-22,5.450948923634504e-21,8.803946848198176e-21)
    sum a = (-1.3476725166931618e-22,-1.4801725092157488e-22,-4.422668943592584e-23)
    sum e = 7.859071306200164e-13
    sum de = -1.0602290566170399e-27
Info: cfl dt = 1.5630459032415271 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7403e+04 | 2592 |      1 | 4.515e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124618.96887532476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 606.8794255990741, dt = 1.5630459032415271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.8%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 137.64 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.227689953307169e-22,5.184177675289377e-21,8.603170062296552e-21)
    sum a = (-1.1553679415353835e-23,-2.3806622210080072e-23,-1.2297305347397214e-23)
    sum e = 7.858974351688641e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.5630198635373809 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6942e+04 | 2592 |      1 | 4.552e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123615.00964089886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 608.4424715023157, dt = 1.5630198635373809 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (2.8%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 150.15 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 640.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8145465865936695e-22,5.244009687883944e-21,8.608902676266956e-21)
    sum a = (1.5344570005747154e-22,-1.6592858815149947e-22,-2.0618002460701306e-23)
    sum e = 7.858877301748396e-13
    sum de = 1.0349855076499675e-27
Info: cfl dt = 1.5629948806788114 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6131e+04 | 2592 |      1 | 4.618e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121851.90427853247 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 610.0054913658531, dt = 1.5629948806788114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.9%)
   patch tree reduce : 1.68 us    (1.1%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 140.62 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (57.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.930748204521352e-22,4.873627610026238e-21,8.570174136537904e-21)
    sum a = (1.1928532125274203e-22,8.005935105625434e-23,-1.001286510897045e-22)
    sum e = 7.858780583719389e-13
    sum de = -1.2116903504194741e-27
Info: cfl dt = 1.5629709657237993 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6991e+04 | 2592 |      1 | 4.548e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123718.3798811752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 611.568486246532, dt = 1.5629709657237993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.5%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 142.87 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4788709651652908e-23,5.191125929715555e-21,8.351538593663928e-21)
    sum a = (-4.640727898500457e-23,2.6011559686768405e-22,-8.941923233464382e-23)
    sum e = 7.858684385638772e-13
    sum de = 2.8272774843121063e-27
Info: cfl dt = 1.5629481292618308 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.9489e+04 | 2592 |      1 | 5.238e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107430.08865143459 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 613.1314572122558, dt = 1.5629481292618308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (2.7%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 153.01 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.892014331878791e-22,5.7381958593879525e-21,8.220150227053886e-21)
    sum a = (-1.517383229883137e-22,-4.060614345407792e-23,-1.0040230277087244e-22)
    sum e = 7.85858889683456e-13
    sum de = -1.4388822911231255e-27
Info: cfl dt = 1.5629263813618266 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5687e+04 | 2592 |      1 | 5.673e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99175.92599071858 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 614.6944053415176, dt = 0.23946154311443024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.8%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 148.45 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.105629026847111e-22,5.493556325834014e-21,8.187524752004338e-21)
    sum a = (-1.9663078622774967e-22,1.360309102822815e-22,2.550415366893424e-23)
    sum e = 7.857208708102209e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.5629235848318168 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6859e+04 | 2592 |      1 | 5.532e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15584.576305187358 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 444                                                     [SPH][rank=0]
Info: time since start : 88.460222611 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007194580000000001 s
sph::RenderFieldGetter compute custom field took :  0.000669993 s
rho_t_ampl=0.000830842, rho_t_phi=3.14159 rad
eps_t_ampl=-1.62329e-05, eps_t_phi=3.1255e-10 rad
vx_t_ampl=-2.33323e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 626.11s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 614.933866884632, dt = 1.5629235848318168 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.29 us   (4.7%)
   patch tree reduce : 2.12 us    (1.0%)
   gen split merge   : 1.04 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.6%)
   LB compute        : 191.94 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.999989235115711e-22,5.727332191382126e-21,8.242460672457763e-21)
    sum a = (1.1078694817167067e-22,2.3732556305147444e-23,1.0990574690597783e-22)
    sum e = 7.858517176685737e-13
    sum de = 7.573064690121713e-28
Info: cfl dt = 1.5629026573162759 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7643e+04 | 2592 |      1 | 4.497e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125127.89398298482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 616.4967904694638, dt = 1.5629026573162759 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (3.0%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 148.62 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4730008917486254e-22,5.6767206568320906e-21,8.480189276685495e-21)
    sum a = (1.2168591908682113e-22,1.9118079930839425e-23,-3.170209401901253e-23)
    sum e = 7.8584045651468e-13
    sum de = -9.34011311781678e-28
Info: cfl dt = 1.5628832889481081 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7711e+04 | 2592 |      1 | 4.491e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125272.39316897851 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 618.0596931267801, dt = 1.5628832889481081 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.3%)
   patch tree reduce : 12.10 us   (7.0%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 144.74 us  (84.2%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1420170230998635e-22,5.7029924400804474e-21,8.319982968279203e-21)
    sum a = (3.4636647145073536e-22,3.210130151604222e-23,1.4567805796964114e-23)
    sum e = 7.858312700952571e-13
    sum de = -2.347650053937731e-27
Info: cfl dt = 1.5628650336171623 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6974e+04 | 2592 |      1 | 4.549e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123671.2060096629 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 619.6225764157282, dt = 1.5628650336171623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.6%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 137.54 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.61383959421144e-22,5.763232040809945e-21,8.378907709178024e-21)
    sum a = (2.211245865882998e-23,5.650393612495557e-23,-6.237840543286336e-23)
    sum e = 7.858222141568676e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.5628479030993532 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7122e+04 | 2592 |      1 | 4.538e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123992.11609804677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 621.1854414493454, dt = 1.5628479030993532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (2.8%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 144.16 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.88027418504546e-22,5.870504744826113e-21,8.221291477548462e-21)
    sum a = (-2.525955255735664e-22,9.38379913171791e-23,-2.929896760227576e-23)
    sum e = 7.858133236896515e-13
    sum de = 2.9787387781145406e-27
Info: cfl dt = 1.562831904692565 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7541e+04 | 2592 |      1 | 4.505e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124898.76464009726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 622.7482893524448, dt = 1.562831904692565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (3.0%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 135.76 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8157249072307183e-22,6.046277930353755e-21,8.201351181229066e-21)
    sum a = (3.2046697342798386e-22,-1.533070208021627e-22,-5.078951091692385e-24)
    sum e = 7.858046158851628e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.5628170452148187 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6139e+04 | 2592 |      1 | 4.617e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121855.00244011787 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 624.3111212571373, dt = 1.5628170452148187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.8%)
   patch tree reduce : 1.57 us    (1.1%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 130.78 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (53.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.232381706086786e-22,5.613566961405609e-21,8.212339617159031e-21)
    sum a = (-2.1331943427214964e-22,1.0998307986495265e-22,1.0782704117105087e-23)
    sum e = 7.857961077878655e-13
    sum de = 1.2116903504194741e-27
Info: cfl dt = 1.5628033309490588 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1852e+04 | 2592 |      1 | 4.999e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112548.89132772062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 625.8739383023521, dt = 0.2405443438186694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.5%)
   patch tree reduce : 1.82 us    (1.1%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 148.59 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8755824322658434e-22,5.845779870877255e-21,8.22732776820787e-21)
    sum a = (1.5994143537321493e-22,2.282046000972202e-22,-8.152922369740756e-24)
    sum e = 7.857089507710683e-13
    sum de = 7.573064690121713e-29
Info: cfl dt = 1.562801807508301 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1059e+04 | 2592 |      1 | 5.076e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17058.354480090406 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 452                                                     [SPH][rank=0]
Info: time since start : 89.014592492 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008946690000000001 s
sph::RenderFieldGetter compute custom field took :  0.0008500430000000001 s
rho_t_ampl=0.000661185, rho_t_phi=3.14159 rad
eps_t_ampl=-1.70024e-05, eps_t_phi=3.07429e-10 rad
vx_t_ampl=-2.59733e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 637.30s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 626.1144826461708, dt = 1.562801807508301 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.39 us   (5.2%)
   patch tree reduce : 2.18 us    (1.0%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.6%)
   LB compute        : 192.57 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.742948914725213e-22,6.216707539151797e-21,8.212308937467918e-21)
    sum a = (3.751094583518212e-23,-6.624365276977424e-23,9.866777539952023e-23)
    sum e = 7.857898023729123e-13
    sum de = 1.135959703518257e-27
Info: cfl dt = 1.5627889300483357 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6782e+04 | 2592 |      1 | 4.565e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123249.26480468245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 627.6772844536791, dt = 1.5627889300483357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.7%)
   patch tree reduce : 1.31 us    (0.9%)
   gen split merge   : 862.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (1.1%)
   LB compute        : 137.09 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.104450706210062e-22,5.883178489273677e-21,8.449975634391457e-21)
    sum a = (-1.2815597955941925e-22,-6.184297462544609e-23,-1.1855733111074962e-22)
    sum e = 7.857801182198259e-13
    sum de = 7.068193710780266e-28
Info: cfl dt = 1.562777704479792 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8202e+04 | 2592 |      1 | 4.453e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126329.05930193135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 629.2400733837275, dt = 1.562777704479792 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.4%)
   patch tree reduce : 1.29 us    (0.8%)
   gen split merge   : 701.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 143.75 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6126720384586805e-22,5.790010902210421e-21,8.094958384737648e-21)
    sum a = (-1.6408150383038338e-22,-8.078545517741088e-23,-3.7563822295364436e-23)
    sum e = 7.857723576740231e-13
    sum de = 2.7263032884438168e-27
Info: cfl dt = 1.562767637301882 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7910e+04 | 2592 |      1 | 4.476e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125695.15469792814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 630.8028510882073, dt = 1.562767637301882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.3%)
   patch tree reduce : 1.36 us    (0.8%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 144.70 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.751164864531687e-23,5.648722240382216e-21,8.099542283812801e-21)
    sum a = (-9.006093104268315e-23,1.844105638141802e-23,-6.520248744888982e-23)
    sum e = 7.857648519845314e-13
    sum de = -6.563322731438818e-28
Info: cfl dt = 1.5627587357454165 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8267e+04 | 2592 |      1 | 4.449e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126468.28687740659 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 632.3656187255092, dt = 1.5627587357454165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.9%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 831.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.8%)
   LB compute        : 130.84 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (50.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4377912161329217e-22,5.755189396194702e-21,7.976050121239994e-21)
    sum a = (-2.8369417933322713e-22,-2.5838457587559067e-23,3.6389332387075586e-23)
    sum e = 7.857576269139684e-13
    sum de = -1.1612032524853294e-27
Info: cfl dt = 1.56275100326619 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7502e+04 | 2592 |      1 | 4.508e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124806.92401320908 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 633.9283774612546, dt = 1.56275100326619 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.93 us   (9.4%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 131.82 us  (82.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.722992818085408e-22,5.680199598078269e-21,8.11229933890022e-21)
    sum a = (-8.863597724812283e-23,-2.4204130963228987e-23,-1.1750427046244884e-22)
    sum e = 7.857506963374413e-13
    sum de = 1.6155871338926322e-27
Info: cfl dt = 1.5627444428378863 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8227e+04 | 2592 |      1 | 4.452e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126380.50460736905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 635.4911284645208, dt = 1.5627444428378863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.8%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 133.72 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.564543895372597e-22,5.6437413208120416e-21,7.808421502101352e-21)
    sum a = (-9.490063897555914e-23,4.5439457749256615e-24,-1.687997328192382e-22)
    sum e = 7.857440737273514e-13
    sum de = 1.2116903504194741e-27
Info: cfl dt = 1.5627390568946664 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7733e+04 | 2592 |      1 | 4.490e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125308.49453837068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 637.0538729073587, dt = 0.24122550035087897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.2%)
   patch tree reduce : 1.08 us    (0.6%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 163.66 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.40022489924312e-22,5.667278733265432e-21,7.72762185272221e-21)
    sum a = (1.6505072915911585e-22,9.0194018999143e-23,-3.1848186338589735e-23)
    sum e = 7.85699277430483e-13
    sum de = -2.069971015299935e-27
Info: cfl dt = 1.5627388505449558 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8142e+04 | 2592 |      1 | 4.458e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19479.574948691046 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 460                                                     [SPH][rank=0]
Info: time since start : 89.562815095 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000797624 s
sph::RenderFieldGetter compute custom field took :  0.000688461 s
rho_t_ampl=0.000475631, rho_t_phi=3.14159 rad
eps_t_ampl=-1.75755e-05, eps_t_phi=3.06613e-10 rad
vx_t_ampl=-2.79527e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 648.48s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 637.2950984077096, dt = 1.5627388505449558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.72 us   (4.5%)
   patch tree reduce : 2.39 us    (1.0%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 210.95 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (77.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1408387024628147e-22,5.8187025394252165e-21,7.694369557272991e-21)
    sum a = (-4.6946450691054416e-23,4.9845940313690355e-23,-1.272661723962917e-22)
    sum e = 7.857392698555242e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.5627342977526832 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6274e+04 | 2592 |      1 | 4.606e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122141.82660556327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 638.8578372582546, dt = 1.5627342977526832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.1%)
   patch tree reduce : 1.31 us    (0.7%)
   gen split merge   : 912.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.8%)
   LB compute        : 164.81 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.022291208145323e-22,5.864891582243487e-21,7.420929647799495e-21)
    sum a = (-1.0927213242610206e-22,1.206567314657236e-22,-3.270523844822017e-25)
    sum e = 7.857321117756855e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.5627314502125267 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6112e+04 | 2592 |      1 | 4.619e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121788.66485103549 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 640.4205715560072, dt = 1.5627314502125267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.6%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 138.29 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.396700702216263e-22,6.1088346856771104e-21,7.519604611037136e-21)
    sum a = (7.158788139968963e-23,-5.241128087910316e-24,-9.25668050883361e-23)
    sum e = 7.857265474940564e-13
    sum de = 7.068193710780266e-28
Info: cfl dt = 1.5627297789597425 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7922e+04 | 2592 |      1 | 4.475e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125717.84808742302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 641.9833030062197, dt = 1.5627297789597425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.9%)
   patch tree reduce : 1.56 us    (1.1%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 131.13 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.211258053694222e-22,6.0022198995165395e-21,7.302874726927449e-21)
    sum a = (-4.486357904089757e-23,1.3976841149059347e-22,3.52560385425974e-23)
    sum e = 7.857213345011529e-13
    sum de = 6.815758221109542e-28
Info: cfl dt = 1.5627292865958036 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8594e+04 | 2592 |      1 | 4.424e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127175.41872436542 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 643.5460327851794, dt = 1.5627292865958036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (2.0%)
   patch tree reduce : 811.00 ns  (0.6%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.4%)
   LB compute        : 126.25 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (57.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.854448014988989e-22,6.333932454242135e-21,7.457846652973805e-21)
    sum a = (3.323961474243367e-22,1.5722477244736046e-22,1.196432037680473e-22)
    sum e = 7.85716488767242e-13
    sum de = -1.2621774483536189e-27
Info: cfl dt = 1.5627299727216684 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8938e+04 | 2592 |      1 | 4.398e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127922.77844310357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 645.1087620717751, dt = 1.5627299727216684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (1.4%)
   patch tree reduce : 871.00 ns  (0.5%)
   gen split merge   : 531.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 681.00 ns  (0.4%)
   LB compute        : 154.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 1.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.147876331632239e-23,6.593318975827614e-21,7.710753820789845e-21)
    sum a = (-8.466279527139839e-23,-8.357330687123419e-24,-7.786460914420462e-23)
    sum e = 7.857120194847056e-13
    sum de = -1.5146129380243427e-27
Info: cfl dt = 1.5627318364617242 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7919e+04 | 2592 |      1 | 4.475e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125710.3579118233 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 646.6714920444967, dt = 1.5627318364617242 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (1.7%)
   patch tree reduce : 400.00 ns  (0.3%)
   gen split merge   : 461.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.5%)
   LB compute        : 137.21 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6666594900771405e-22,6.450855689925515e-21,7.434746627604351e-21)
    sum a = (3.6637359297165645e-22,2.413817165809339e-22,-1.5215912855682965e-22)
    sum e = 7.857079352300398e-13
    sum de = 1.4136387421560532e-27
Info: cfl dt = 1.5627348764051647 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8685e+04 | 2592 |      1 | 4.417e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127373.86806079735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 648.2342238809584, dt = 0.24149028828992414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (2.5%)
   patch tree reduce : 1.21 us    (0.8%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.9%)
   LB compute        : 128.52 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2863799225895353e-23,6.704388347273882e-21,7.339950470402585e-21)
    sum a = (1.366222590865591e-23,-3.1068023847300103e-23,-1.488604214094687e-22)
    sum e = 7.856928443667571e-13
    sum de = 1.9185097214975007e-27
Info: cfl dt = 1.5627359938370944 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8637e+04 | 2592 |      1 | 4.420e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19666.934019617795 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 468                                                     [SPH][rank=0]
Info: time since start : 90.09978960800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000782812 s
sph::RenderFieldGetter compute custom field took :  0.0007030420000000001 s
rho_t_ampl=0.0002789, rho_t_phi=3.14159 rad
eps_t_ampl=-1.79383e-05, eps_t_phi=3.08122e-10 rad
vx_t_ampl=-2.92217e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 659.66s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 648.4757141692484, dt = 1.5627359938370944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.63 us   (5.2%)
   patch tree reduce : 1.98 us    (0.8%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.7%)
   LB compute        : 214.94 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.2159498064738385e-25,6.622851464155416e-21,7.107719234678418e-21)
    sum a = (-6.1523342886759175e-24,2.6248977315068584e-23,2.272910700140791e-23)
    sum e = 7.857051144480785e-13
    sum de = -2.2214323091023692e-27
Info: cfl dt = 1.5627398435645286 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6261e+04 | 2592 |      1 | 4.607e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122111.62689862316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 650.0384501630855, dt = 1.5627398435645286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.1%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 160.46 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.61266127357439e-23,6.708586184128128e-21,7.277313481904622e-21)
    sum a = (-1.976995015736699e-22,-1.1385642706951548e-22,-5.331764292629799e-23)
    sum e = 7.857011752512963e-13
    sum de = 2.2214323091023692e-27
Info: cfl dt = 1.5627454119477973 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6302e+04 | 2592 |      1 | 4.604e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122202.29956234401 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 651.60119000665, dt = 1.5627454119477973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.2%)
   patch tree reduce : 1.69 us    (1.0%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 149.06 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.855626335626039e-22,6.4212397583574916e-21,7.134570937002637e-21)
    sum a = (1.9824990602359577e-22,1.7615398306696724e-22,-3.796411188422198e-23)
    sum e = 7.85698355091103e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.562752147070227 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5447e+04 | 2592 |      1 | 4.675e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120346.91525412422 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 653.1639354185978, dt = 1.562752147070227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.3%)
   patch tree reduce : 1.90 us    (1.1%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 151.18 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.462428300668054e-23,6.923086661184958e-21,7.087239269740485e-21)
    sum a = (1.6324546675046681e-22,1.6355116411993698e-23,-2.6808265104697666e-23)
    sum e = 7.856959452398216e-13
    sum de = 1.1107161545511846e-27
Info: cfl dt = 1.5627600468974374 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0971e+04 | 2592 |      1 | 6.326e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88927.04128610427 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 654.726687565668, dt = 1.5627600468974374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.3%)
   patch tree reduce : 2.00 us    (1.2%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.5%)
   LB compute        : 154.01 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.001167555752759e-22,6.823795624031565e-21,7.054061295861671e-21)
    sum a = (9.22545254539038e-23,-2.2572186282354762e-23,4.0089633630955835e-23)
    sum e = 7.856939522812158e-13
    sum de = 8.582806648804608e-28
Info: cfl dt = 1.5627691072237524 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6516e+04 | 2592 |      1 | 5.572e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100962.75465466773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 656.2894476125655, dt = 1.5627691072237524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.3%)
   patch tree reduce : 1.63 us    (0.9%)
   gen split merge   : 932.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 159.77 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.442482968912538e-22,6.758042350736628e-21,7.168984818503205e-21)
    sum a = (-7.002653000092028e-23,1.003540985177423e-22,-1.6026987891635337e-22)
    sum e = 7.856923798279446e-13
    sum de = 6.563322731438818e-28
Info: cfl dt = 1.5627793233794571 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6348e+04 | 2592 |      1 | 4.600e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122304.6556746253 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 657.8522167197892, dt = 1.5627793233794571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (2.7%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 149.93 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4295752663264478e-22,7.01108076735445e-21,6.7619605372982344e-21)
    sum a = (-2.653326547901457e-22,5.5298321713046125e-24,2.2790972908754e-22)
    sum e = 7.856912307271974e-13
    sum de = -4.543838814073028e-28
Info: cfl dt = 1.5627906901719677 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6467e+04 | 2592 |      1 | 4.590e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122564.05412398104 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 659.4149960431687, dt = 0.24133388761845254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.4%)
   patch tree reduce : 1.61 us    (1.0%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 151.30 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.969471312279623e-23,6.938376030277942e-21,7.120282410818061e-21)
    sum a = (4.017751899746882e-23,-3.050519881590638e-23,1.241724483586534e-22)
    sum e = 7.856903105823409e-13
    sum de = 1.1612032524853294e-27
Info: cfl dt = 1.5627931004730116 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7715e+04 | 2592 |      1 | 4.491e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19345.389321089704 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 476                                                     [SPH][rank=0]
Info: time since start : 90.674564915 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000817434 s
sph::RenderFieldGetter compute custom field took :  0.000687359 s
rho_t_ampl=7.59854e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-1.80819e-05, eps_t_phi=3.09535e-10 rad
vx_t_ampl=-2.97499e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 670.84s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 659.6563299307871, dt = 1.5627931004730116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.90 us   (4.9%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 942.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 215.94 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.859139767768607e-24,6.886236842560766e-21,7.301820595757268e-21)
    sum a = (3.860433310068722e-23,-5.0736022436965865e-24,-1.9301724533904188e-23)
    sum e = 7.856906727143924e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5628052346956691 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5781e+04 | 2592 |      1 | 4.647e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121076.1502918376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 661.2191230312601, dt = 1.5628052346956691 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.4%)
   patch tree reduce : 1.39 us    (0.8%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 156.75 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2899041196163927e-22,6.898111457515435e-21,7.159545535871117e-21)
    sum a = (1.550084555492254e-22,1.23115260671958e-23,-7.993092289116445e-23)
    sum e = 7.856903210507365e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.562814360197007 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4962e+04 | 2592 |      1 | 4.716e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119298.2688866698 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 662.7819282659558, dt = 1.562814360197007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.4%)
   patch tree reduce : 1.48 us    (0.8%)
   gen split merge   : 772.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 159.72 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.537550169563367e-22,6.931065118692339e-21,6.987252527468679e-21)
    sum a = (-1.4730179032670265e-22,5.770641640073889e-23,3.709649739619958e-23)
    sum e = 7.856905166758517e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.5628023267764404 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6325e+04 | 2592 |      1 | 4.602e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122257.99663881442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 664.3447426261528, dt = 1.5628023267764404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.4%)
   patch tree reduce : 1.87 us    (1.1%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 155.08 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.448342277444914e-23,7.056653613937235e-21,7.136673086395847e-21)
    sum a = (7.726844044557193e-23,-1.2921326157675138e-22,6.3439656927995704e-24)
    sum e = 7.856911384701768e-13
    sum de = 2.1709452111682245e-27
Info: cfl dt = 1.5627908892203306 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5666e+04 | 2592 |      1 | 4.656e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120825.98265878414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 665.9075449529292, dt = 1.5627908892203306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.5%)
   patch tree reduce : 1.42 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 158.58 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9190080576880207e-22,6.7087915828732895e-21,7.122557314131552e-21)
    sum a = (-2.943396111723184e-22,9.236588757873734e-23,3.086703032418005e-24)
    sum e = 7.856921848905965e-13
    sum de = -1.3631516442219084e-27
Info: cfl dt = 1.5627806481832232 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.1097e+04 | 2592 |      1 | 6.307e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89203.11293092587 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 667.4703358421496, dt = 1.5627806481832232 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.8%)
   patch tree reduce : 1.87 us    (1.1%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.9%)
   LB compute        : 149.47 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.102104829820254e-22,7.026261018364068e-21,7.12483594369266e-21)
    sum a = (2.0152826255770242e-22,-7.176893417542371e-23,1.732122039245037e-23)
    sum e = 7.856936535668189e-13
    sum de = 1.9185097214975007e-27
Info: cfl dt = 1.5627716081939862 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3250e+04 | 2592 |      1 | 5.993e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93874.40801055921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 669.0331164903328, dt = 1.5627716081939862 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.5%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 941.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 167.14 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7089175597465585e-22,6.785912392970777e-21,7.163027769274193e-21)
    sum a = (1.1847335433827412e-23,1.649526933810906e-22,6.028218403444757e-23)
    sum e = 7.856955412922488e-13
    sum de = 2.6253290925755273e-27
Info: cfl dt = 1.5627637731574175 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4909e+04 | 2592 |      1 | 4.721e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119180.36777432222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 670.5958880985268, dt = 0.24105759379904157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.1%)
   patch tree reduce : 1.64 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 157.00 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.330983868648762e-22,7.010528758226828e-21,7.211128334627122e-21)
    sum a = (-1.594857069073871e-22,2.1757699522441435e-23,-1.402503197709747e-22)
    sum e = 7.856919340238674e-13
    sum de = 6.058451752097371e-28
Info: cfl dt = 1.5627632433507235 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7286e+04 | 2592 |      1 | 4.525e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19179.63438145494 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 484                                                     [SPH][rank=0]
Info: time since start : 91.25595463500001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000787248 s
sph::RenderFieldGetter compute custom field took :  0.000653038 s
rho_t_ampl=-0.000127973, rho_t_phi=3.14159 rad
eps_t_ampl=-1.80031e-05, eps_t_phi=3.1671e-10 rad
vx_t_ampl=-2.95254e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 682.02s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 670.8369456923258, dt = 1.5627632433507235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.76 us   (4.5%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 215.20 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (76.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.722992818085409e-23,7.027268755957517e-21,6.967780348597583e-21)
    sum a = (-2.4253098706063592e-23,5.429103543519798e-23,-5.541906237640757e-23)
    sum e = 7.856972960735602e-13
    sum de = 1.7165613297609217e-27
Info: cfl dt = 1.5627562335420322 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6500e+04 | 2592 |      1 | 4.588e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122632.51865062877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 672.3997089356765, dt = 1.5627562335420322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.7%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 932.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 155.64 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6267580616818201e-22,7.13744592660449e-21,6.947459448883677e-21)
    sum a = (2.6338858776074274e-22,-1.3494574698997136e-22,-1.6544489203150126e-23)
    sum e = 7.857005397423303e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5627510043341535 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7146e+04 | 2592 |      1 | 4.536e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124035.01567680719 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 673.9624651692185, dt = 1.5627510043341535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.1%)
   patch tree reduce : 1.66 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 155.38 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.899051961048216e-22,6.778877485948983e-21,6.951980272541798e-21)
    sum a = (-4.5916247609852035e-23,1.9148092418383215e-23,-4.296539147572964e-23)
    sum e = 7.857037191065474e-13
    sum de = 1.6155871338926322e-27
Info: cfl dt = 1.5627469886106993 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8513e+04 | 2592 |      1 | 4.430e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127002.38722984587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 675.5252161735526, dt = 1.5627469886106993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (2.3%)
   patch tree reduce : 1.46 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 138.02 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.174880822325759e-22,6.92919406449813e-21,6.864191590617451e-21)
    sum a = (-3.244882957356056e-22,1.7162895493769888e-22,7.365619919997101e-23)
    sum e = 7.857072955327483e-13
    sum de = -2.524354896707238e-28
Info: cfl dt = 1.5627441874174501 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7577e+04 | 2592 |      1 | 4.502e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124969.57686099198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 677.0879631621633, dt = 1.5627441874174501 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (2.4%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 141.25 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (73.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.296941748785818e-22,7.316540794964046e-21,7.070422407602024e-21)
    sum a = (-1.4485425566999872e-22,1.772870484958291e-23,-1.4576446095515766e-22)
    sum e = 7.857112615677121e-13
    sum de = -2.2971629560035864e-27
Info: cfl dt = 1.5627426013561774 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8413e+04 | 2592 |      1 | 4.437e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126784.90491407356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 678.6507073495808, dt = 1.5627426013561774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.3%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 139.49 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.742948914725213e-22,7.22399261349167e-21,6.671180894075831e-21)
    sum a = (4.024852598554235e-22,-9.755693217135214e-23,-5.0720567688008924e-23)
    sum e = 7.857156091814722e-13
    sum de = 5.806016262426647e-28
Info: cfl dt = 1.5627422304688898 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8557e+04 | 2592 |      1 | 5.338e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105392.07756106525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 680.2134499509369, dt = 1.5627422304688898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.5%)
   patch tree reduce : 2.18 us    (1.2%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.9%)
   LB compute        : 159.20 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.822762536400143e-22,6.981471254497212e-21,6.666182291499522e-21)
    sum a = (1.478100719870934e-22,-2.213109548589038e-22,-3.312673334412264e-23)
    sum e = 7.857203295249224e-13
    sum de = 3.534096855390133e-28
Info: cfl dt = 1.5627430741702535 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7459e+04 | 2592 |      1 | 4.511e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124712.75688204638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 681.7761921814058, dt = 0.24136927245876905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.6%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (1.1%)
   LB compute        : 139.31 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0809811774276896e-22,6.83125095660986e-21,6.671933829936177e-21)
    sum a = (2.62287778860891e-22,3.73626385136938e-23,9.378364611565238e-24)
    sum e = 7.856975533877438e-13
    sum de = 1.3883951931889808e-27
Info: cfl dt = 1.562743863289597 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8382e+04 | 2592 |      1 | 4.440e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19571.821603361324 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 492                                                     [SPH][rank=0]
Info: time since start : 91.80207680000001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006696320000000001 s
sph::RenderFieldGetter compute custom field took :  0.000564445 s
rho_t_ampl=-0.000327821, rho_t_phi=3.14159 rad
eps_t_ampl=-1.77044e-05, eps_t_phi=3.28166e-10 rad
vx_t_ampl=-2.85553e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 693.20s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 682.0175614538646, dt = 1.562743863289597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.52 us   (5.2%)
   patch tree reduce : 1.82 us    (0.8%)
   gen split merge   : 1.02 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 195.89 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.82745428917976e-22,6.920926765005366e-21,6.691719523965112e-21)
    sum a = (-6.732585743758132e-23,-6.470795114106112e-23,6.547829295442046e-23)
    sum e = 7.857242163795989e-13
    sum de = 1.4893693890572703e-27
Info: cfl dt = 1.5627455608314818 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6367e+04 | 2592 |      1 | 4.598e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122343.00569021597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 683.5803053171542, dt = 1.5627455608314818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.4%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 148.28 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.633795690851245e-22,6.739986517294745e-21,6.837880344984834e-21)
    sum a = (-1.2694926193159343e-22,1.6795835499913522e-23,-6.83242544776569e-23)
    sum e = 7.857307020648904e-13
    sum de = 2.1204581132340797e-27
Info: cfl dt = 1.5627490151258059 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7224e+04 | 2592 |      1 | 4.530e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124204.51821448092 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 685.1430508779856, dt = 1.5627490151258059 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (2.3%)
   patch tree reduce : 1.47 us    (0.9%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (1.0%)
   LB compute        : 148.13 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1607947991026196e-22,6.82993833025406e-21,6.626557015076859e-21)
    sum a = (1.4882422829133002e-22,-3.09736644109508e-23,1.537072235723594e-22)
    sum e = 7.857365341183553e-13
    sum de = 7.825500179792437e-28
Info: cfl dt = 1.5627536793763313 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7095e+04 | 2592 |      1 | 4.540e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123923.80687665334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 686.7057998931115, dt = 1.5627536793763313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.7%)
   patch tree reduce : 1.47 us    (0.9%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 147.42 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.45304479510882e-22,6.744235703835281e-21,7.040253281086348e-21)
    sum a = (2.0627168982878381e-22,3.632391058222835e-23,1.2238239335102842e-22)
    sum e = 7.857426927103585e-13
    sum de = -8.077935669463161e-28
Info: cfl dt = 1.5627595491611435 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7821e+04 | 2592 |      1 | 4.483e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125500.89304776106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 688.2685535724878, dt = 1.5627595491611435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.5%)
   patch tree reduce : 1.68 us    (1.0%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 148.75 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.284023281315438e-22,6.853584860790819e-21,7.207031038102776e-21)
    sum a = (-1.7134106572969738e-22,1.353678022972601e-22,-6.636168522377111e-23)
    sum e = 7.857491671815544e-13
    sum de = -2.0194839173657902e-27
Info: cfl dt = 1.5627666206228605 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5143e+04 | 2592 |      1 | 5.742e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97983.64986282244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 689.8313131216489, dt = 1.5627666206228605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.8%)
   patch tree reduce : 1.36 us    (0.9%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.1%)
   LB compute        : 134.97 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 682.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.417835119493117e-22,7.142661129118365e-21,6.955842405976285e-21)
    sum a = (-2.091857845257675e-23,1.2670670486852022e-22,-5.260033631085234e-23)
    sum e = 7.857559446647692e-13
    sum de = -7.068193710780266e-28
Info: cfl dt = 1.5627748893534261 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6364e+04 | 2592 |      1 | 4.599e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122337.96598528611 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 691.3940797422717, dt = 1.5627748893534261 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.2%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 165.18 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.075111104011024e-22,7.333778242780676e-21,6.884392809586264e-21)
    sum a = (-2.4482888552213407e-22,-1.0141858904816451e-22,-1.2969551676706473e-22)
    sum e = 7.857630115735321e-13
    sum de = 7.573064690121713e-28
Info: cfl dt = 1.5627843503336087 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6545e+04 | 2592 |      1 | 4.584e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122731.753891103 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 692.9568546316252, dt = 0.24132258377812832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (3.0%)
   patch tree reduce : 2.02 us    (1.3%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (1.1%)
   LB compute        : 141.25 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0622034014249335e-22,7.131081774859866e-21,6.792853146322209e-21)
    sum a = (-5.34421860067978e-23,-3.192126670772189e-22,-1.177662877674493e-22)
    sum e = 7.857066047965182e-13
    sum de = -1.1864468014524018e-27
Info: cfl dt = 1.562786432600308 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6695e+04 | 2592 |      1 | 4.572e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19002.539681845123 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 500                                                     [SPH][rank=0]
Info: time since start : 92.57621246800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008654960000000001 s
sph::RenderFieldGetter compute custom field took :  0.000694891 s
rho_t_ampl=-0.000518517, rho_t_phi=3.14159 rad
eps_t_ampl=-1.71938e-05, eps_t_phi=3.45482e-10 rad
vx_t_ampl=-2.68658e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 704.38s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 693.1981772154033, dt = 1.562786432600308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.77 us   (4.4%)
   patch tree reduce : 1.92 us    (0.8%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.6%)
   LB compute        : 219.45 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6678378107141893e-22,6.605870764770239e-21,6.610248985764059e-21)
    sum a = (-4.211316146896473e-23,-1.5084577116577082e-22,-1.1335710812409818e-22)
    sum e = 7.857686361940569e-13
    sum de = 1.6408306828597046e-27
Info: cfl dt = 1.5627967533295357 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7637e+04 | 2592 |      1 | 4.497e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125103.84289395003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 694.7609636480037, dt = 1.5627967533295357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (3.0%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 852.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 136.64 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2406084207775496e-22,6.501749647750149e-21,6.436540168283368e-21)
    sum a = (-3.191383002952182e-23,-1.1938295586134314e-22,9.811760609670323e-23)
    sum e = 7.857776885526221e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.5628087608141354 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6897e+04 | 2592 |      1 | 4.556e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123497.1074454446 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 696.3237604013332, dt = 1.5628087608141354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (2.5%)
   patch tree reduce : 1.70 us    (1.2%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 130.93 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.204220424524797e-23,6.339693247172846e-21,6.755125221078882e-21)
    sum a = (1.450628637705537e-23,-1.6651289141776554e-23,8.718672698385403e-23)
    sum e = 7.857855789344646e-13
    sum de = 2.069971015299935e-27
Info: cfl dt = 1.5628219430111303 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5877e+04 | 2592 |      1 | 4.639e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121285.0253458449 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 697.8865691621473, dt = 1.5628219430111303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (3.1%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 137.74 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.61266127357439e-23,6.393982703003436e-21,6.882841114328213e-21)
    sum a = (-1.3146161561436772e-22,9.58504075872206e-24,2.318940747046415e-22)
    sum e = 7.857936911047815e-13
    sum de = 1.4893693890572703e-27
Info: cfl dt = 1.5628362902052801 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6213e+04 | 2592 |      1 | 4.611e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122014.92861949017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 699.4493911051585, dt = 1.5628362902052801 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.4%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 842.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 138.48 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0457715018119857e-22,6.4294974297840766e-21,7.358329498926744e-21)
    sum a = (3.7408246462601195e-23,4.8262737717849653e-23,-3.034925279189857e-23)
    sum e = 7.858020142097324e-13
    sum de = 3.660314600225495e-27
Info: cfl dt = 1.562851794235023 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1448e+04 | 2592 |      1 | 5.038e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111672.71070907767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 701.0122273953638, dt = 1.562851794235023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.5%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 152.26 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 812.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.394354825826454e-23,6.535130153194342e-21,7.105976420209396e-21)
    sum a = (-4.518772393560611e-23,-5.0786043249538846e-24,4.314414845804768e-23)
    sum e = 7.858105318410534e-13
    sum de = -7.573064690121713e-29
Info: cfl dt = 1.562868446413659 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.8755e+04 | 2592 |      1 | 5.316e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105828.65089900875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 702.5750791895988, dt = 1.562868446413659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.5%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.9%)
   LB compute        : 149.16 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.69482077163913e-23,6.4854493317083206e-21,7.230834695485904e-21)
    sum a = (-2.8894468475642683e-22,5.041039823000579e-23,-2.5873824284931268e-23)
    sum e = 7.858192270461966e-13
    sum de = 9.592548607487504e-28
Info: cfl dt = 1.5628862374776442 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6413e+04 | 2592 |      1 | 4.595e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122453.44437331257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 704.1379476360124, dt = 0.24084534092969534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.5%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 931.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 144.72 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6807455133002795e-22,6.541067460671677e-21,7.170670099537173e-21)
    sum a = (-5.716503826285626e-23,1.1163140980949427e-23,-6.689916171585635e-24)
    sum e = 7.857181750376581e-13
    sum de = -7.573064690121713e-28
Info: cfl dt = 1.5628895465996142 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7501e+04 | 2592 |      1 | 4.508e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19234.40774247923 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 508                                                     [SPH][rank=0]
Info: time since start : 93.139192292 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008849950000000001 s
sph::RenderFieldGetter compute custom field took :  0.000724976 s
rho_t_ampl=-0.000695262, rho_t_phi=3.14159 rad
eps_t_ampl=-1.64846e-05, eps_t_phi=3.6419e-10 rad
vx_t_ampl=-2.45011e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 715.56s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 704.3787929769421, dt = 1.5628895465996142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.19 us   (4.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 246.55 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3791012468505555e-22,6.553683436722164e-21,7.162524676929851e-21)
    sum a = (3.6417197517195287e-22,-3.1865489113912437e-23,-6.434973933441465e-23)
    sum e = 7.858260212896566e-13
    sum de = 6.563322731438818e-28
Info: cfl dt = 1.562908180678465 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4713e+04 | 2592 |      1 | 4.737e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118763.76746946044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 705.9416825235418, dt = 1.562908180678465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.8%)
   patch tree reduce : 1.82 us    (1.1%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.9%)
   LB compute        : 154.32 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.436612895495873e-22,6.470291546186455e-21,7.016893975459587e-21)
    sum a = (-1.7826043595733707e-22,-1.2167498722001318e-22,1.2931478027700434e-22)
    sum e = 7.858367116053757e-13
    sum de = -3.0292258760486853e-28
Info: cfl dt = 1.5629283878038838 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4518e+04 | 2592 |      1 | 4.754e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118341.7636659866 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 707.5045907042203, dt = 1.5629283878038838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (2.8%)
   patch tree reduce : 1.36 us    (0.8%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.8%)
   LB compute        : 153.52 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3086818956191486e-22,6.210009614446285e-21,7.370343647521247e-21)
    sum a = (-1.6678378107141893e-22,9.511205526208315e-23,9.040572792874704e-23)
    sum e = 7.858458628852851e-13
    sum de = -9.592548607487504e-28
Info: cfl dt = 1.5629497040209006 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5397e+04 | 2592 |      1 | 4.679e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120252.54610857068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 709.0675190920242, dt = 1.5629497040209006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.6%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 157.46 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 682.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9624336831101985e-22,6.52807599004019e-21,7.481237222000567e-21)
    sum a = (1.7946715358516292e-22,-6.486618740579701e-23,6.463235913183507e-23)
    sum e = 7.858551075317732e-13
    sum de = 2.0194839173657902e-27
Info: cfl dt = 1.5629721146520608 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5032e+04 | 2592 |      1 | 4.710e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119461.71484192782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 710.6304687960451, dt = 1.5629721146520608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.3%)
   patch tree reduce : 1.39 us    (0.8%)
   gen split merge   : 942.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 156.18 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.326281350984855e-23,6.301511546060494e-21,7.56211455746126e-21)
    sum a = (-1.2629455343139005e-22,-8.243821052216259e-23,1.5354025987195684e-23)
    sum e = 7.85864437508824e-13
    sum de = 4.0389678347315804e-28
Info: cfl dt = 1.5629956075130071 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8924e+04 | 2592 |      1 | 5.298e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106204.02024056992 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 712.1934409106972, dt = 1.5629956075130071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.4%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 164.45 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.600931891625349e-22,6.159003329182891e-21,7.547602502355905e-21)
    sum a = (1.292728352362368e-22,1.4988120943159403e-22,-2.1508975888433657e-23)
    sum e = 7.858738345088669e-13
    sum de = 7.068193710780266e-28
Info: cfl dt = 1.5630201699347595 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5260e+04 | 2592 |      1 | 4.691e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119960.20048953453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 713.7564365182102, dt = 1.5630201699347595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (2.6%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 153.90 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3826254438774132e-23,6.574842716829227e-21,7.485175184202236e-21)
    sum a = (-6.99767849923264e-23,7.273417288300374e-23,2.0770692265026927e-22)
    sum e = 7.85883279906776e-13
    sum de = 1.6408306828597046e-27
Info: cfl dt = 1.5630457887221203 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5403e+04 | 2592 |      1 | 4.678e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120271.9873908229 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 715.319456688145, dt = 0.23995205033588718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.5%)
   patch tree reduce : 1.57 us    (0.9%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 152.02 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.881452505682509e-22,6.532071637504666e-21,7.714149422503794e-21)
    sum a = (-1.9551393055093214e-23,3.3302929306799235e-23,9.675340076285246e-23)
    sum e = 7.857310976087739e-13
    sum de = -2.54959844567431e-27
Info: cfl dt = 1.5630502205893408 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7511e+04 | 2592 |      1 | 4.507e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19166.47005369911 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 516                                                     [SPH][rank=0]
Info: time since start : 93.71270616000001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000967939 s
sph::RenderFieldGetter compute custom field took :  0.000720438 s
rho_t_ampl=-0.000853619, rho_t_phi=3.14159 rad
eps_t_ampl=-1.55951e-05, eps_t_phi=3.89462e-10 rad
vx_t_ampl=-2.15221e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 726.74s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 715.5594087384809, dt = 1.5630502205893408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.04 us   (5.2%)
   patch tree reduce : 2.17 us    (1.0%)
   gen split merge   : 1.02 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 184.75 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.938964154327826e-22,6.579278045982566e-21,7.852068084374512e-21)
    sum a = (-2.038582545731321e-23,-1.8199391920313534e-22,-2.172276056631894e-22)
    sum e = 7.858905603923764e-13
    sum de = -9.087677628146056e-28
Info: cfl dt = 1.5630766438619916 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6995e+04 | 2592 |      1 | 4.548e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123731.69998990103 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 717.1224589590703, dt = 1.5630766438619916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (2.1%)
   patch tree reduce : 1.26 us    (0.8%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 136.92 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.938964154327826e-22,6.1265792116458574e-21,7.267140646882643e-21)
    sum a = (1.4474192823123833e-22,4.085103231442896e-23,8.749197768334323e-23)
    sum e = 7.859017999737332e-13
    sum de = 2.5243548967072378e-27
Info: cfl dt = 1.563104486466708 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8789e+04 | 2592 |      1 | 4.409e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127626.36507627211 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 718.6855356029323, dt = 1.563104486466708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (2.0%)
   patch tree reduce : 1.01 us    (0.7%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.5%)
   LB compute        : 131.67 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 2.66 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2981200694228666e-22,6.364671660197762e-21,7.642049781557819e-21)
    sum a = (-3.28689341945244e-22,-7.986240194208852e-23,3.064953477908675e-23)
    sum e = 7.859112918211364e-13
    sum de = 1.135959703518257e-27
Info: cfl dt = 1.563133344387438 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8271e+04 | 2592 |      1 | 4.448e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126504.20302014663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 720.248640089399, dt = 1.563133344387438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (1.8%)
   patch tree reduce : 721.00 ns  (0.4%)
   gen split merge   : 541.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.4%)
   LB compute        : 151.37 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.62 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.870879914601937e-22,6.145434174580636e-21,7.645533752597983e-21)
    sum a = (-4.2774288679954424e-23,-3.918071327082644e-23,6.104482027184341e-24)
    sum e = 7.859207378025075e-13
    sum de = -1.7670484276950664e-27
Info: cfl dt = 1.5631631984551457 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7551e+04 | 2592 |      1 | 4.504e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124944.76991711417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 721.8117734337865, dt = 1.5631631984551457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (1.8%)
   patch tree reduce : 771.00 ns  (0.5%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 530.00 ns  (0.3%)
   LB compute        : 141.71 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 2.60 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.005859308532376e-22,6.11604931660092e-21,7.635892459050757e-21)
    sum a = (4.529170705034429e-22,-5.2057599885542e-23,6.874628422201598e-24)
    sum e = 7.859301354160579e-13
    sum de = -8.582806648804608e-28
Info: cfl dt = 1.5631940328552407 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7789e+04 | 2592 |      1 | 4.485e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125463.11953630412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 723.3749366322417, dt = 1.5631940328552407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (2.2%)
   patch tree reduce : 1.07 us    (0.8%)
   gen split merge   : 530.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 128.27 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.633795690851245e-22,6.024544175631317e-21,7.647240769429054e-21)
    sum a = (-1.5254708054738848e-22,1.3731758599095708e-22,3.567714263190242e-23)
    sum e = 7.859394662802343e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.563225831341769 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8120e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126183.74268812647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 724.9381306650969, dt = 1.563225831341769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (2.3%)
   patch tree reduce : 1.40 us    (1.0%)
   gen split merge   : 641.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 131.15 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.54694444000689e-22,6.387289592331014e-21,7.725524159551707e-21)
    sum a = (4.647146609286765e-24,-1.4169494616250687e-22,7.327457986094827e-23)
    sum e = 7.859487119570371e-13
    sum de = 1.5903435849255598e-27
Info: cfl dt = 1.5632585772068042 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8950e+04 | 2592 |      1 | 4.397e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127988.34545562069 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 726.5013564964387, dt = 0.23866800358098317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.8%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 661.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 129.88 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.462428300668054e-23,6.135366426712313e-21,7.772399099774772e-21)
    sum a = (-1.6967220092525737e-22,-2.5939665111343956e-23,3.3414235498137395e-23)
    sum e = 7.857440741160754e-13
    sum de = -6.058451752097371e-28
Info: cfl dt = 1.5632639946589761 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0197e+04 | 2592 |      1 | 4.306e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19954.403627750162 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 524                                                     [SPH][rank=0]
Info: time since start : 94.24922244700001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000782081 s
sph::RenderFieldGetter compute custom field took :  0.0008569430000000001 s
rho_t_ampl=-0.000989624, rho_t_phi=3.14159 rad
eps_t_ampl=-1.45482e-05, eps_t_phi=4.28243e-10 rad
vx_t_ampl=-1.80055e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 737.92s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 726.7400245000197, dt = 1.5632639946589761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.31 us   (10.0%)
   patch tree reduce : 2.08 us    (0.9%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 194.40 us  (83.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.896706084658407e-22,6.10859077466723e-21,7.819877676632467e-21)
    sum a = (2.603300720710671e-22,-2.175289551858731e-22,2.6700758458218953e-22)
    sum e = 7.859557500019124e-13
    sum de = -1.2874209973206913e-27
Info: cfl dt = 1.5632974861680848 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7311e+04 | 2592 |      1 | 4.523e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124434.62992404649 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 728.3032884946787, dt = 1.5632974861680848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.8%)
   patch tree reduce : 1.97 us    (1.3%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 137.08 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 591.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3603234708478e-22,5.61885918844892e-21,8.419873998405173e-21)
    sum a = (1.3107007425640295e-22,2.436738184576668e-23,1.4298151364061044e-22)
    sum e = 7.859663991133733e-13
    sum de = 1.5146129380243427e-28
Info: cfl dt = 1.5633322081013576 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8405e+04 | 2592 |      1 | 4.438e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126810.87513824583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 729.8665859808467, dt = 1.5633322081013576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.7%)
   patch tree reduce : 1.67 us    (1.1%)
   gen split merge   : 882.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 135.36 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.387317196657029e-22,5.8459836649447205e-21,8.546456781381051e-21)
    sum a = (3.319757218678335e-23,-1.0087059161478348e-22,1.8021129898885665e-22)
    sum e = 7.859752803842564e-13
    sum de = -4.796274303743752e-28
Info: cfl dt = 1.563367826405664 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8471e+04 | 2592 |      1 | 4.433e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126958.02838923616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 731.429918188948, dt = 1.563367826405664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.5%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 150.34 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.828632609816809e-22,5.5903665312685e-21,8.857294589443153e-21)
    sum a = (1.256141700880414e-22,7.715972353162884e-23,1.056454598430806e-22)
    sum e = 7.859839796403665e-13
    sum de = 2.0194839173657902e-28
Info: cfl dt = 1.563404318007251 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7891e+04 | 2592 |      1 | 4.477e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125700.5405933187 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 732.9932860153536, dt = 1.563404318007251 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (1.9%)
   patch tree reduce : 1.10 us    (0.8%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (1.0%)
   LB compute        : 130.85 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.156092281438714e-22,5.850157431633517e-21,8.964174240604881e-21)
    sum a = (-1.2882352548119526e-22,1.4010942430593283e-22,-2.6507384918089384e-23)
    sum e = 7.859925020689992e-13
    sum de = 1.1612032524853294e-27
Info: cfl dt = 1.5634416639448427 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8607e+04 | 2592 |      1 | 4.423e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127259.12380432567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 734.5566903333608, dt = 1.5634416639448427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (2.0%)
   patch tree reduce : 921.00 ns  (0.7%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.6%)
   LB compute        : 126.47 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.105629026847111e-22,6.118464356534268e-21,8.81942732655368e-21)
    sum a = (-4.698496295577226e-23,3.4108828533726975e-23,1.2539962467644078e-22)
    sum e = 7.860008310427748e-13
    sum de = -2.7767903863779616e-28
Info: cfl dt = 1.5634798448891614 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8624e+04 | 2592 |      1 | 4.421e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127298.22605434626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 736.1201319973056, dt = 1.5634798448891614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (2.2%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 147.04 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.92077015620145e-22,6.088922240140287e-21,9.134235986214289e-21)
    sum a = (-3.4853599569650738e-22,-1.9678699157227582e-22,-1.4945719247493048e-22)
    sum e = 7.860089501470495e-13
    sum de = -6.310887241768094e-29
Info: cfl dt = 1.5635188411237826 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6135e+04 | 2592 |      1 | 4.617e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121898.22542086964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 737.6836118421948, dt = 0.23702841936369623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.6%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 148.00 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3544533974311345e-23,5.8617881355783065e-21,8.88394383719648e-21)
    sum a = (-2.481601964202278e-22,3.833570002504464e-23,-2.325451406684845e-23)
    sum e = 7.857558084634347e-13
    sum de = 3.9127500898962186e-28
Info: cfl dt = 1.5635250800211646 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1352e+04 | 2592 |      1 | 5.048e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16905.26662729524 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 532                                                     [SPH][rank=0]
Info: time since start : 94.80091285200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000845075 s
sph::RenderFieldGetter compute custom field took :  0.0007133780000000001 s
rho_t_ampl=-0.00109989, rho_t_phi=3.14159 rad
eps_t_ampl=-1.33705e-05, eps_t_phi=4.68019e-10 rad
vx_t_ampl=-1.40412e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 749.10s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 737.9206402615584, dt = 1.5635250800211646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.71 us   (5.1%)
   patch tree reduce : 1.91 us    (0.9%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 183.79 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1490546522692886e-22,5.949605727201175e-21,8.862541631920271e-21)
    sum a = (1.4208458196570695e-22,2.6925488825000383e-24,-4.102498475262074e-23)
    sum e = 7.860150458662832e-13
    sum de = 6.184669496932733e-28
Info: cfl dt = 1.5635647447900805 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6420e+04 | 2592 |      1 | 5.584e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100804.6456444945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 739.4841653415796, dt = 1.5635647447900805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.7%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 153.68 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.69482077163913e-23,5.925899823589645e-21,8.784504123805016e-21)
    sum a = (2.404962557413764e-22,-8.7212327254191e-23,2.5752046902878748e-23)
    sum e = 7.860240274026053e-13
    sum de = -8.582806648804608e-28
Info: cfl dt = 1.5636054215449942 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6279e+04 | 2592 |      1 | 5.601e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100501.30339083471 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 741.0477300863696, dt = 1.5636054215449942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (2.0%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.9%)
   LB compute        : 163.27 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.038723107758271e-22,5.719292756122276e-21,8.87697527018754e-21)
    sum a = (1.1368820544708174e-22,-4.253097942421095e-23,-2.4940974337181884e-23)
    sum e = 7.860314110179732e-13
    sum de = 1.135959703518257e-28
Info: cfl dt = 1.563646854155677 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.5330e+04 | 2592 |      1 | 5.718e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98442.76097608387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 742.6113355079146, dt = 1.563646854155677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.5%)
   patch tree reduce : 2.02 us    (1.2%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 153.53 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.650811368340572e-22,5.687691035904739e-21,8.798344452702876e-21)
    sum a = (-4.518772393560611e-23,-2.885541463220224e-23,1.3194821479287525e-23)
    sum e = 7.860384931125929e-13
    sum de = -1.7670484276950664e-28
Info: cfl dt = 1.563688001342744 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4554e+04 | 2592 |      1 | 4.751e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118476.80646870758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 744.1749823620703, dt = 1.563688001342744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.7%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 151.55 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.526988343367085e-22,5.653274711007405e-21,8.848792495309511e-21)
    sum a = (-6.844913182518516e-23,-2.1312175803840257e-23,5.647330882297372e-23)
    sum e = 7.86045287568389e-13
    sum de = -1.262177448353619e-28
Info: cfl dt = 1.5637291797551418 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8320e+04 | 2592 |      1 | 4.444e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126659.02290763808 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 745.738670363413, dt = 1.5637291797551418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (2.2%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 130.28 us  (82.5%)
   LB move op cnt    : 0
   LB apply          : 14.87 us   (9.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3685394206542737e-22,5.625836327073636e-21,8.970938481881079e-21)
    sum a = (1.5920970234357584e-22,-1.8176083976770754e-23,1.1083626561910802e-22)
    sum e = 7.860517812641765e-13
    sum de = -7.446846945286351e-28
Info: cfl dt = 1.563771048692896 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8259e+04 | 2592 |      1 | 4.449e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126528.54557773103 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 747.3023995431681, dt = 1.563771048692896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (2.3%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 691.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.9%)
   LB compute        : 133.19 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.542241922342983e-22,5.599888688719987e-21,9.186765496121258e-21)
    sum a = (-2.738222021438859e-22,1.7642428350302893e-24,6.118090808195898e-23)
    sum e = 7.860579616893872e-13
    sum de = -2.145701662201152e-28
Info: cfl dt = 1.5638135868654675 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8238e+04 | 2592 |      1 | 4.451e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126487.28463876419 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 748.866170591861, dt = 0.23508543123625714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (2.2%)
   patch tree reduce : 1.35 us    (0.8%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.9%)
   LB compute        : 151.45 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1901344013016575e-22,5.615876092610983e-21,9.162323431016646e-21)
    sum a = (-6.376347295118055e-23,4.5261137940224505e-23,-7.358156625523103e-24)
    sum e = 7.857651398773016e-13
    sum de = -7.825500179792437e-28
Info: cfl dt = 1.5638202069180651 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9221e+04 | 2592 |      1 | 4.377e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19336.025862532606 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 540                                                     [SPH][rank=0]
Info: time since start : 95.376462269 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008172640000000001 s
sph::RenderFieldGetter compute custom field took :  0.000699237 s
rho_t_ampl=-0.00118168, rho_t_phi=3.14159 rad
eps_t_ampl=-1.20922e-05, eps_t_phi=5.24773e-10 rad
vx_t_ampl=-9.73023e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 760.28s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 749.1012560230972, dt = 1.5638202069180651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.74 us   (5.3%)
   patch tree reduce : 2.05 us    (1.0%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.7%)
   LB compute        : 178.08 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8386106581367114e-22,5.691769324270589e-21,9.142760329208313e-21)
    sum a = (8.588235032079685e-24,-8.331867711580314e-23,3.18598808668262e-23)
    sum e = 7.860625138455153e-13
    sum de = -3.281661365719409e-28
Info: cfl dt = 1.5638633314435446 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7471e+04 | 2592 |      1 | 4.510e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124825.01546645506 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 750.6650762300153, dt = 1.5638633314435446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (2.6%)
   patch tree reduce : 1.86 us    (1.3%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.9%)
   LB compute        : 130.50 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5451823414934613e-22,5.460940048142816e-21,9.2232498083932e-21)
    sum a = (-2.2342248504979794e-22,2.0071509213496206e-23,9.746507728964536e-23)
    sum e = 7.860689197879134e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.5639072299125103 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7835e+04 | 2592 |      1 | 4.482e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125619.9965400778 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 752.2289395614589, dt = 1.5639072299125103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.3%)
   patch tree reduce : 1.89 us    (1.1%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.9%)
   LB compute        : 152.48 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8280488319404291e-22,5.57316197934465e-21,9.42697492794923e-21)
    sum a = (-2.4690212910611145e-22,1.3094270296423717e-22,4.999180681813924e-23)
    sum e = 7.860740702826127e-13
    sum de = -8.835242138475332e-28
Info: cfl dt = 1.5639517339542262 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7316e+04 | 2592 |      1 | 4.522e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124494.9699134796 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 753.7928467913714, dt = 1.5639517339542262 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.3%)
   patch tree reduce : 2.03 us    (1.2%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 151.71 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.845648287306136e-22,5.864649476496016e-21,9.468037805447321e-21)
    sum a = (3.3352904987812e-22,2.344917523854976e-22,-2.9970780639925424e-23)
    sum e = 7.860788282670189e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.5639968157893396 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6951e+04 | 2592 |      1 | 4.551e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123706.04376274176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 755.3567985253256, dt = 1.5639968157893396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.4%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.9%)
   LB compute        : 147.02 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1613785769789994e-22,6.312368193601397e-21,9.358634786306497e-21)
    sum a = (-1.3363755857092603e-22,-3.413009051320662e-23,1.308643331363579e-22)
    sum e = 7.860832175494644e-13
    sum de = -3.34477023813709e-28
Info: cfl dt = 1.5640424200291867 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8143e+04 | 2592 |      1 | 4.458e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126299.36165443217 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 756.920795341115, dt = 1.5640424200291867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.6%)
   patch tree reduce : 2.08 us    (1.3%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 137.09 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7376733840692169e-22,6.048926150014887e-21,9.689084957506789e-21)
    sum a = (8.844983463531992e-23,-9.844757843913035e-23,-4.5688116734282064e-23)
    sum e = 7.860872296177495e-13
    sum de = -3.660314600225495e-28
Info: cfl dt = 1.564088429445527 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8527e+04 | 2592 |      1 | 4.429e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127137.65238068918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 758.4848377611441, dt = 1.564088429445527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.9%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 134.55 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3843875423908417e-22,5.844645865207556e-21,9.479556942280841e-21)
    sum a = (-1.2041501435113219e-23,1.285077048520377e-22,1.1349790321473354e-22)
    sum e = 7.86090856604179e-13
    sum de = 1.8932661725304283e-28
Info: cfl dt = 1.5641348894659814 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8599e+04 | 2592 |      1 | 4.423e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127297.47365072502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 760.0489261905897, dt = 0.23294559404632764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (2.5%)
   patch tree reduce : 1.80 us    (1.1%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 151.39 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.011729381949041e-23,6.0520722209313824e-21,9.630486284734193e-21)
    sum a = (2.299824074734044e-22,-6.48144365500824e-23,-3.807524688345148e-23)
    sum e = 7.857711625367439e-13
    sum de = -6.941975965944904e-29
Info: cfl dt = 1.5641419341814253 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9793e+04 | 2592 |      1 | 4.335e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19345.018162607423 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 548                                                     [SPH][rank=0]
Info: time since start : 95.91355947800001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000824004 s
sph::RenderFieldGetter compute custom field took :  0.000701811 s
rho_t_ampl=-0.00123298, rho_t_phi=3.14159 rad
eps_t_ampl=-1.07457e-05, eps_t_phi=5.94179e-10 rad
vx_t_ampl=-5.18221e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 771.46s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 760.281871784636, dt = 1.5641419341814253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.09 us   (4.3%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 230.10 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.383209221753793e-22,5.928173651885694e-21,9.55327704568418e-21)
    sum a = (-2.0596359171104103e-22,3.674290697265799e-23,4.1337772623119034e-23)
    sum e = 7.860934247873923e-13
    sum de = 9.466330862652142e-29
Info: cfl dt = 1.5641888782264008 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5673e+04 | 2592 |      1 | 4.656e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120946.16586329156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 761.8460137188174, dt = 1.5641888782264008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (2.8%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 155.65 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.284034046199727e-22,6.065079537755123e-21,9.680043746836591e-21)
    sum a = (-3.591653807586329e-22,1.8657517373450641e-22,4.86932524270506e-23)
    sum e = 7.860966084142448e-13
    sum de = 2.461246024289557e-28
Info: cfl dt = 1.5642363454793276 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6527e+04 | 2592 |      1 | 4.585e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122803.76269256878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 763.4102025970438, dt = 1.5642363454793276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.5%)
   patch tree reduce : 1.31 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.8%)
   LB compute        : 154.93 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (56.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.112515329105295e-22,6.4740870101082835e-21,9.761964181914436e-21)
    sum a = (-1.67682400581502e-22,-4.3199829146615413e-23,-1.0221792584903183e-22)
    sum e = 7.860990170564114e-13
    sum de = -8.835242138475332e-29
Info: cfl dt = 1.564284252316653 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8703e+04 | 2592 |      1 | 4.415e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127534.94635301924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 764.9744389425232, dt = 1.564284252316653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.9%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 140.67 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0205236653366318e-21,6.226807380574052e-21,9.484035915204784e-21)
    sum a = (-1.483107314284254e-22,7.471479647618183e-24,7.078335905458423e-23)
    sum e = 7.861009798090686e-13
    sum de = -1.8932661725304283e-28
Info: cfl dt = 1.564331906507862 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9855e+04 | 2592 |      1 | 4.330e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130042.76005367193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 766.5387231948398, dt = 1.564331906507862 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.7%)
   patch tree reduce : 1.40 us    (0.8%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 149.73 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2313654772452665e-21,6.2781458341206376e-21,9.730076175026856e-21)
    sum a = (-8.599788711495038e-23,-1.8932268282811421e-22,-1.8008581164401628e-23)
    sum e = 7.861025292615049e-13
    sum de = 3.6287601640166543e-29
Info: cfl dt = 1.564377548553052 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8843e+04 | 2592 |      1 | 4.405e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127847.53628061498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 768.1030551013476, dt = 1.564377548553052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (3.0%)
   patch tree reduce : 1.68 us    (1.1%)
   gen split merge   : 912.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 134.63 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (2.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.323332765391483e-21,5.828017693453845e-21,9.632453922408823e-21)
    sum a = (2.9397695401289203e-23,1.80390846184255e-23,1.0726790780321177e-22)
    sum e = 7.861036617263569e-13
    sum de = 2.524354896707238e-29
Info: cfl dt = 1.564423559406091 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9393e+04 | 2592 |      1 | 4.364e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129046.07033538396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 769.6674326499007, dt = 1.564423559406091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.8%)
   patch tree reduce : 1.62 us    (1.1%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 135.41 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1913383967818518e-21,6.018442388690084e-21,9.898256227896315e-21)
    sum a = (2.064385763092278e-22,1.248180493658272e-22,7.949756580213307e-23)
    sum e = 7.861043761143415e-13
    sum de = 5.5220263365470826e-30
Info: cfl dt = 1.5644699161616822 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0093e+04 | 2592 |      1 | 4.313e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130570.46408130434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 771.2318562093068, dt = 0.23063133686798665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.8%)
   patch tree reduce : 1.87 us    (1.3%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 131.97 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0056065814692525e-21,6.130788281243979e-21,9.894868569135108e-21)
    sum a = (9.096596926355253e-23,1.2299152497769852e-23,1.34092342909573e-22)
    sum e = 7.857733066345489e-13
    sum de = -7.099748146989106e-30
Info: cfl dt = 1.5644767777300548 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0159e+04 | 2592 |      1 | 4.309e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19270.28634185052 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 556                                                     [SPH][rank=0]
Info: time since start : 96.45427987100001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00079491 s
sph::RenderFieldGetter compute custom field took :  0.0006124370000000001 s
rho_t_ampl=-0.00125257, rho_t_phi=3.14159 rad
eps_t_ampl=-9.36509e-06, eps_t_phi=6.89861e-10 rad
vx_t_ampl=-5.12526e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 782.64s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 771.4624875461748, dt = 1.5644767777300548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.10 us   (5.4%)
   patch tree reduce : 1.84 us    (0.9%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 179.78 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.758732037340983e-22,6.137026465789422e-21,1.0110948558903647e-20)
    sum a = (2.4339751301678747e-22,-2.8813993889159348e-24,-1.3691688816873943e-22)
    sum e = 7.861047202016431e-13
    sum de = 3.944304526105059e-30
Info: cfl dt = 1.56448647811172 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0482e+04 | 2592 |      1 | 4.286e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131420.02303275437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 773.0269643239048, dt = 1.56448647811172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (2.1%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 154.05 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7292709668447655e-22,6.120635485457737e-21,9.684750114452097e-21)
    sum a = (2.5152360087225297e-22,8.586319448079396e-23,2.754099815055971e-23)
    sum e = 7.861043413755281e-13
    sum de = -1.8932661725304283e-29
Info: cfl dt = 1.5644403458054505 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8995e+04 | 2592 |      1 | 4.394e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128190.06345675093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 774.5914508020165, dt = 1.5644403458054505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (2.5%)
   patch tree reduce : 2.01 us    (1.2%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 150.43 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6342389067006745e-23,6.3243942500136815e-21,9.856482432805149e-21)
    sum a = (6.959166234514794e-23,-1.5980523835371795e-22,1.1022514430128334e-22)
    sum e = 7.86103732720967e-13
    sum de = -6.941975965944904e-29
Info: cfl dt = 1.564394111178436 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8134e+04 | 2592 |      1 | 4.459e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126316.10919929804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 776.155891147822, dt = 1.564394111178436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (2.5%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 1.10 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 136.00 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.653741022606761e-24,5.88223493878809e-21,1.0093595206552401e-20)
    sum a = (-2.377490475248367e-23,-9.670800752368494e-23,-1.4805224964903778e-24)
    sum e = 7.861026678503938e-13
    sum de = -1.2306230121447784e-28
Info: cfl dt = 1.5643460092744506 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0367e+04 | 2592 |      1 | 4.294e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131162.905569879 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 777.7202852590004, dt = 1.5643460092744506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.3%)
   patch tree reduce : 1.36 us    (0.8%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 150.85 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1512599666321467e-22,5.780360370543207e-21,1.0003903313431064e-20)
    sum a = (7.430299606229777e-23,-1.4506486961767443e-23,-4.338822277701541e-23)
    sum e = 7.861011867449592e-13
    sum de = -1.735493991486226e-28
Info: cfl dt = 1.564297629456696 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0215e+04 | 2592 |      1 | 4.305e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130829.27641161456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 779.2846312682749, dt = 1.564297629456696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (2.8%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 131.35 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.226219743731931e-23,5.821870173198259e-21,9.903252147548969e-21)
    sum a = (-3.2889474069040587e-22,-1.3026873833167486e-23,3.9961300601445116e-23)
    sum e = 7.860992932395979e-13
    sum de = -1.8932661725304283e-29
Info: cfl dt = 1.5642497151421595 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0448e+04 | 2592 |      1 | 4.288e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131330.8872535844 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 780.8489288977316, dt = 1.5642497151421595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.6%)
   patch tree reduce : 1.36 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 145.24 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.566889771762405e-22,5.802689460691075e-21,1.0030953331550476e-20)
    sum a = (-2.595469893551376e-22,1.1957717200880697e-22,1.0604970898366284e-22)
    sum e = 7.860969916757603e-13
    sum de = -1.3883951931889808e-28
Info: cfl dt = 1.5642022893376335 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9378e+04 | 2592 |      1 | 4.365e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129003.16622873605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 782.4131786128738, dt = 0.229924694839724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.3%)
   patch tree reduce : 1.64 us    (1.0%)
   gen split merge   : 832.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 145.31 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.538133947439747e-22,5.9339376541717985e-21,1.0107026165519324e-20)
    sum a = (-2.774808672920813e-22,-1.0055341703881946e-22,-7.011602968045205e-23)
    sum e = 7.857715045550454e-13
    sum de = -1.8301573001127474e-28
Info: cfl dt = 1.5641954485312954 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0918e+04 | 2592 |      1 | 4.255e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19453.651886622385 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 564                                                     [SPH][rank=0]
Info: time since start : 96.977760856 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00079469 s
sph::RenderFieldGetter compute custom field took :  0.000670053 s
rho_t_ampl=-0.00124001, rho_t_phi=3.14159 rad
eps_t_ampl=-7.98543e-06, eps_t_phi=8.11462e-10 rad
vx_t_ampl=4.1606e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 793.82s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 782.6431033077135, dt = 1.5641954485312954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.26 us   (4.7%)
   patch tree reduce : 1.80 us    (0.8%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 214.88 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (77.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1888479369967643e-21,5.751306076168986e-21,9.97709856417234e-21)
    sum a = (-7.149160073789501e-23,8.990307087428239e-24,1.4364069177351674e-23)
    sum e = 7.860950510006026e-13
    sum de = -9.466330862652142e-29
Info: cfl dt = 1.5641485111518119 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7746e+04 | 2592 |      1 | 4.489e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125451.92527651078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 784.2072987562449, dt = 1.5641485111518119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (3.1%)
   patch tree reduce : 2.10 us    (1.4%)
   gen split merge   : 1.29 us    (0.9%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 130.98 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (2.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.141400826864378e-21,5.851089749375229e-21,1.0065637794652642e-20)
    sum a = (1.0617831382710175e-22,-1.2931666299582456e-22,-4.8080806131127295e-23)
    sum e = 7.860911400921902e-13
    sum de = 6.310887241768095e-30
Info: cfl dt = 1.564102216192927 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7302e+04 | 2592 |      1 | 4.523e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124484.70978292546 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 785.7714472673966, dt = 1.564102216192927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (2.9%)
   patch tree reduce : 1.71 us    (1.1%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.6%)
   LB compute        : 133.04 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.476806212829382e-22,5.540603871219953e-21,9.941597969855289e-21)
    sum a = (-1.052283446307282e-22,-9.89094247386764e-23,1.989911888891942e-23)
    sum e = 7.860876274847916e-13
    sum de = 3.7865323450608567e-29
Info: cfl dt = 1.5640564746439363 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8763e+04 | 2592 |      1 | 4.411e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127654.62400025628 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 787.3355494835896, dt = 1.5640564746439363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (2.4%)
   patch tree reduce : 1.65 us    (1.0%)
   gen split merge   : 772.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (1.1%)
   LB compute        : 141.62 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1767294110322155e-21,5.40971673022096e-21,1.0025885091283177e-20)
    sum a = (1.6177718665809892e-22,1.7162870420680878e-22,-1.0017934998468866e-22)
    sum e = 7.860836939082843e-13
    sum de = 3.597205727807814e-28
Info: cfl dt = 1.564011313858517 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8655e+04 | 2592 |      1 | 4.419e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127416.07051654079 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 788.8996059582336, dt = 1.564011313858517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (3.0%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 772.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 133.37 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.069824808470738e-22,5.889699899432566e-21,9.775298701138627e-21)
    sum a = (4.8422754171905185e-23,2.236210639147493e-22,-6.882066730830683e-23)
    sum e = 7.860793855778394e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.5639667552362744 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7275e+04 | 2592 |      1 | 4.526e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124414.23501853684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 790.463617272092, dt = 1.5639667552362744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.8%)
   patch tree reduce : 1.56 us    (1.0%)
   gen split merge   : 721.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 143.98 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.209495955180793e-22,6.2800666333234405e-21,9.692188132642098e-21)
    sum a = (2.0231776398441828e-23,3.8953149914980625e-23,-1.2059249528358052e-22)
    sum e = 7.860747111480893e-13
    sum de = -3.155443620884047e-28
Info: cfl dt = 1.5639228198589108 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3842e+04 | 2592 |      1 | 5.912e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95232.80722985324 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 792.0275840273283, dt = 1.5639228198589108 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (3.2%)
   patch tree reduce : 1.77 us    (1.2%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.9%)
   LB compute        : 132.55 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.242359754406689e-22,6.196597718258295e-21,9.463106068458668e-21)
    sum a = (-4.538028525919534e-23,9.213868778268215e-23,9.28790410463692e-23)
    sum e = 7.860696801107043e-13
    sum de = -3.407879110554771e-28
Info: cfl dt = 1.563879528460844 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8614e+04 | 2592 |      1 | 4.422e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127315.41754428718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 793.5915068471872, dt = 0.23221222206507264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (1.9%)
   patch tree reduce : 1.13 us    (0.8%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.5%)
   LB compute        : 136.97 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.686021043956276e-22,6.25957168978276e-21,9.651600220491748e-21)
    sum a = (1.5488349127360447e-22,-1.541222722912908e-22,1.901267017861667e-22)
    sum e = 7.85766045566934e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.5638733260175706 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1686e+04 | 2592 |      1 | 4.202e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19894.76073745204 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 572                                                     [SPH][rank=0]
Info: time since start : 97.72740615500001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000789862 s
sph::RenderFieldGetter compute custom field took :  0.0006415 s
rho_t_ampl=-0.00119568, rho_t_phi=3.14159 rad
eps_t_ampl=-6.64151e-06, eps_t_phi=9.84809e-10 rad
vx_t_ampl=8.71906e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 805.00s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 793.8237190692523, dt = 1.5638733260175706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.81 us   (4.9%)
   patch tree reduce : 1.99 us    (0.9%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 195.35 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.05280913098141e-22,5.9899505338485124e-21,9.960225345674188e-21)
    sum a = (2.3468090376898165e-22,-1.2395132282496358e-22,-8.528555677280108e-23)
    sum e = 7.860657039693034e-13
    sum de = -5.048709793414476e-29
Info: cfl dt = 1.5638306183055022 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6958e+04 | 2592 |      1 | 4.551e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123716.25742649943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 795.3875923952698, dt = 1.5638306183055022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.9%)
   patch tree reduce : 1.46 us    (1.0%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.9%)
   LB compute        : 129.97 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 732.00 ns  (56.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.448342277444914e-23,5.8197231144402394e-21,9.611498238284706e-21)
    sum a = (-9.017004912605037e-23,-4.9250266401558697e-23,-1.1123842892290327e-22)
    sum e = 7.860586851556589e-13
    sum de = -5.048709793414476e-28
Info: cfl dt = 1.5637887843834124 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8214e+04 | 2592 |      1 | 4.453e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126440.80456315608 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 796.9514230135753, dt = 1.5637887843834124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (2.3%)
   patch tree reduce : 1.71 us    (1.1%)
   gen split merge   : 772.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 142.48 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.646119615560955e-22,5.801025409919725e-21,9.41725188269197e-21)
    sum a = (8.734581638007499e-23,1.5180210892675265e-22,-2.8672645447645054e-23)
    sum e = 7.860526366191641e-13
    sum de = 5.301145283085199e-28
Info: cfl dt = 1.5637476519881162 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7955e+04 | 2592 |      1 | 4.472e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125873.94359243808 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 798.5152117979587, dt = 1.5637476519881162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.5%)
   patch tree reduce : 1.63 us    (1.1%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.6%)
   LB compute        : 134.03 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2141984728446994e-22,6.195705517458998e-21,9.436972823783432e-21)
    sum a = (6.384049748061624e-23,2.4970189051721403e-23,4.4554966374397566e-23)
    sum e = 7.860462422094926e-13
    sum de = 3.407879110554771e-28
Info: cfl dt = 1.5637072457374375 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7514e+04 | 2592 |      1 | 4.507e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124913.44961977989 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 800.0789594499469, dt = 1.5637072457374375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.1%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 163.84 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.524058689100897e-22,6.135514057060398e-21,9.56389850056006e-21)
    sum a = (-8.007983576997469e-23,7.118330203544017e-23,3.7891403048274783e-23)
    sum e = 7.860395507685175e-13
    sum de = 2.271919407036514e-28
Info: cfl dt = 1.5636666022622439 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7205e+04 | 2592 |      1 | 4.531e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124238.32474653595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 801.6426666956843, dt = 1.5636666022622439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.7%)
   patch tree reduce : 1.71 us    (1.1%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 145.40 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.421943094396354e-22,6.2830320777067146e-21,9.617938090891695e-21)
    sum a = (-1.8500008228296014e-22,1.439382855823214e-22,8.783395170877563e-26)
    sum e = 7.860325751894633e-13
    sum de = -3.155443620884047e-28
Info: cfl dt = 1.5636261140843701 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7946e+04 | 2592 |      1 | 4.473e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125844.69371271187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 803.2063332979466, dt = 1.5636261140843701 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (2.3%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 139.46 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.238251779503452e-22,6.564890505755058e-21,9.588519341131222e-21)
    sum a = (-9.47016589411836e-23,-1.9741547362137577e-24,-1.366403001919404e-22)
    sum e = 7.86025329605405e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.563586410843905 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9585e+04 | 2592 |      1 | 4.350e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129400.70555934102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 804.769959412031, dt = 0.23437541876012347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (1.9%)
   patch tree reduce : 1.25 us    (0.8%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.6%)
   LB compute        : 145.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.0246370845351315e-22,6.450403170815081e-21,9.449598373015702e-21)
    sum a = (3.7780531688207044e-23,8.51075918704183e-24,1.2980563019114128e-22)
    sum e = 7.857573105332388e-13
    sum de = -4.796274303743752e-28
Info: cfl dt = 1.5635807821229846 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0726e+04 | 2592 |      1 | 4.268e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19767.571900040726 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 580                                                     [SPH][rank=0]
Info: time since start : 98.26095859200001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000682642 s
sph::RenderFieldGetter compute custom field took :  0.0005510550000000001 s
rho_t_ampl=-0.00112078, rho_t_phi=3.14159 rad
eps_t_ampl=-5.36722e-06, eps_t_phi=1.22376e-09 rad
vx_t_ampl=1.30479e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 816.18s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 805.0043348307911, dt = 1.5635807821229846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.22 us   (5.3%)
   patch tree reduce : 2.03 us    (1.0%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 183.30 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.470060472598148e-22,6.464960806878426e-21,9.683784150049168e-21)
    sum a = (1.9704158371807334e-22,3.892005343748873e-23,3.399634642171432e-23)
    sum e = 7.860197218595305e-13
    sum de = -2.524354896707238e-29
Info: cfl dt = 1.5635417391605744 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7450e+04 | 2592 |      1 | 4.512e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124760.88656027107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 806.5679156129141, dt = 1.5635417391605744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (1.9%)
   patch tree reduce : 1.04 us    (0.7%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 142.91 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8444807315533767e-22,6.549575461818928e-21,9.662036079233067e-21)
    sum a = (-2.581220355605773e-22,3.666884106772536e-23,1.0347351675402958e-22)
    sum e = 7.860103008564424e-13
    sum de = 5.806016262426647e-28
Info: cfl dt = 1.563503790113777 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9477e+04 | 2592 |      1 | 4.358e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129159.20171019205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 808.1314573520747, dt = 1.563503790113777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (1.6%)
   patch tree reduce : 601.00 ns  (0.4%)
   gen split merge   : 461.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.7%)
   LB compute        : 143.62 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.21418770796041e-22,6.6051582878729585e-21,9.878132542720737e-21)
    sum a = (3.975749461038981e-23,-1.3867393981398872e-22,-3.061898320314365e-23)
    sum e = 7.860023341680996e-13
    sum de = 7.825500179792437e-28
Info: cfl dt = 1.563466677021715 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8122e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126213.32867483809 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 809.6949611421885, dt = 1.563466677021715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (2.5%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 132.85 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.375577049823698e-22,6.251143922520338e-21,9.725433716844592e-21)
    sum a = (3.9898706247688576e-23,8.179217731075632e-23,-1.2316637308789978e-22)
    sum e = 7.859941289834202e-13
    sum de = 1.262177448353619e-28
Info: cfl dt = 1.563430422061998 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9197e+04 | 2592 |      1 | 4.379e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128545.49739457606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 811.2584278192102, dt = 1.563430422061998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (2.0%)
   patch tree reduce : 1.40 us    (1.0%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 132.61 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.512902320143946e-22,6.551411213103812e-21,9.460524282118363e-21)
    sum a = (-4.147770910112027e-23,-2.3759259144942044e-25,9.626943365045269e-23)
    sum e = 7.859857337782984e-13
    sum de = 2.524354896707238e-28
Info: cfl dt = 1.5633950417116202 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8929e+04 | 2592 |      1 | 4.398e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127960.78257898927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 812.8218582412721, dt = 1.5633950417116202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.5%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.8%)
   LB compute        : 137.89 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.882620061435268e-22,6.486912797767598e-21,9.782567745328299e-21)
    sum a = (-1.8668178450897275e-22,5.098131246674105e-23,1.0835916122548289e-22)
    sum e = 7.859771650387502e-13
    sum de = 7.32062920045099e-28
Info: cfl dt = 1.5633605520389677 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7358e+04 | 2592 |      1 | 4.519e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124545.49273117934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 814.3852532829837, dt = 1.5633605520389677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.6%)
   patch tree reduce : 1.49 us    (1.0%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 134.80 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1485897829450426e-21,6.6066313819984164e-21,9.961422693513249e-21)
    sum a = (-7.661373194536855e-23,8.020229273669472e-23,1.8151429448486814e-22)
    sum e = 7.85968439796157e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.5633269686615 cfl multiplier : 0.9999999999999997             [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7480e+04 | 2592 |      1 | 4.509e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124809.14130189644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 815.9486138350227, dt = 0.2363367573071855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (2.0%)
   patch tree reduce : 531.00 ns  (0.4%)
   gen split merge   : 671.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.5%)
   LB compute        : 133.45 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.90843546660745e-22,6.648478166969749e-21,1.0061505118035275e-20)
    sum a = (-3.4928056614771904e-22,-4.4970891861856156e-23,2.1539551110958975e-22)
    sum e = 7.857462040176047e-13
    sum de = -7.32062920045099e-28
Info: cfl dt = 1.5633222964624272 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1488e+04 | 2592 |      1 | 5.034e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16900.725671960827 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 588                                                     [SPH][rank=0]
Info: time since start : 98.80149745300001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008008290000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007129170000000001 s
rho_t_ampl=-0.00101725, rho_t_phi=3.14159 rad
eps_t_ampl=-4.19459e-06, eps_t_phi=1.57062e-09 rad
vx_t_ampl=1.70382e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 827.37s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 816.1849505923299, dt = 1.5633222964624272 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.05 us   (4.3%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 228.36 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.594715857436572e-21,6.563443086472745e-21,1.0402241411546125e-20)
    sum a = (2.0711895965257641e-22,7.48003960020586e-23,-3.458859725379417e-23)
    sum e = 7.859617696717486e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.5632894401365887 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6792e+04 | 2592 |      1 | 5.539e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101598.13417833812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 817.7482728887923, dt = 1.5632894401365887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (2.7%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 152.21 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.741770594088165e-22,6.7739832189744236e-21,1.01527665575272e-20)
    sum a = (2.550667292262948e-22,-5.0392897213877504e-24,7.94722122415309e-23)
    sum e = 7.859508897805604e-13
    sum de = 7.32062920045099e-28
Info: cfl dt = 1.563257861943469 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.6880e+04 | 2592 |      1 | 5.529e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101787.70093130256 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 819.3115623289289, dt = 1.563257861943469 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (3.0%)
   patch tree reduce : 1.79 us    (1.0%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 157.46 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.329805548011713e-22,6.70360205520256e-21,1.0366157147628439e-20)
    sum a = (2.205340651959595e-22,1.567654773346211e-23,-1.8716268697144148e-22)
    sum e = 7.859418123684692e-13
    sum de = -3.7865323450608567e-28
Info: cfl dt = 1.5632272315278826 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6698e+04 | 2592 |      1 | 4.572e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123102.91508994116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 820.8748201908724, dt = 1.5632272315278826 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.9%)
   patch tree reduce : 2.29 us    (1.5%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 135.58 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0269937258092298e-22,6.744277425455392e-21,9.865169787397198e-21)
    sum a = (-3.140675187740351e-22,-5.36138363741535e-23,-3.4410928552543667e-23)
    sum e = 7.859326251516718e-13
    sum de = 4.796274303743752e-28
Info: cfl dt = 1.5631975673605243 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7377e+04 | 2592 |      1 | 4.517e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124574.55794171277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 822.4380474224002, dt = 1.5631975673605243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (3.1%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 133.49 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.661956972413235e-22,6.6063361213022465e-21,9.930771561805652e-21)
    sum a = (7.7833286994767e-23,-1.37025233773112e-22,-5.567275023064979e-23)
    sum e = 7.859233732982624e-13
    sum de = 3.281661365719409e-28
Info: cfl dt = 1.563168882622327 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7473e+04 | 2592 |      1 | 4.510e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124779.69565118711 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 824.0012449897607, dt = 1.563168882622327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.6%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 762.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 138.43 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.603277768015158e-22,6.32703875885764e-21,9.827127437072786e-21)
    sum a = (-1.0803973995513098e-22,9.412056503031069e-23,-3.786653016513605e-23)
    sum e = 7.859140748700932e-13
    sum de = -1.337908095254836e-27
Info: cfl dt = 1.5631411900593766 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7129e+04 | 2592 |      1 | 4.537e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124030.22815279807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 825.564413872383, dt = 1.5631411900593766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (3.0%)
   patch tree reduce : 1.28 us    (0.8%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 133.61 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.56101969834574e-22,6.65472678192022e-21,9.781853768608292e-21)
    sum a = (-8.89376566550793e-23,1.1117858982199147e-23,-2.4855360954770292e-22)
    sum e = 7.859047482417334e-13
    sum de = -7.573064690121713e-28
Info: cfl dt = 1.563114501936086 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6813e+04 | 2592 |      1 | 4.562e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123343.26778306678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 827.1275550624424, dt = 0.23801129142623267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (3.2%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 135.75 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.955385289056484e-22,6.5923818440528134e-21,9.558028377013123e-21)
    sum a = (2.3461671666111853e-22,8.988326313396527e-23,-5.0350906573452053e-23)
    sum e = 7.85733870822921e-13
    sum de = 5.048709793414476e-28
Info: cfl dt = 1.5631109145849318 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9435e+04 | 2592 |      1 | 4.361e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19647.42499976411 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 596                                                     [SPH][rank=0]
Info: time since start : 99.360207727 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000789121 s
sph::RenderFieldGetter compute custom field took :  0.0006381350000000001 s
rho_t_ampl=-0.000887776, rho_t_phi=3.14159 rad
eps_t_ampl=-3.15304e-06, eps_t_phi=2.12541e-09 rad
vx_t_ampl=2.05899e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 838.55s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 827.3655663538686, dt = 1.5631109145849318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.35 us   (4.2%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 241.05 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.05280913098141e-22,6.7423486028641065e-21,9.502911566038222e-21)
    sum a = (-1.7840164759463584e-22,-8.639715098432993e-23,6.078167102773552e-23)
    sum e = 7.858976909026434e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5630850021183889 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2751e+04 | 2592 |      1 | 4.914e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 114521.92144057644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 828.9286772684536, dt = 1.5630850021183889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.7%)
   patch tree reduce : 1.41 us    (0.8%)
   gen split merge   : 1.05 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 151.45 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.106688438932026e-21,6.469527719602884e-21,9.684774756932844e-21)
    sum a = (-6.471344214755409e-23,-1.1066564456704505e-22,-7.837389280757033e-23)
    sum e = 7.858864356166624e-13
    sum de = -1.0854726055841122e-27
Info: cfl dt = 1.5630605193814984 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6591e+04 | 2592 |      1 | 4.580e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122856.54642161231 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 830.491762270572, dt = 1.5630605193814984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (3.2%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (1.0%)
   LB compute        : 137.77 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.06150071499642e-21,6.277640360646216e-21,9.453515631938898e-21)
    sum a = (2.0269004921002413e-22,9.161491095328384e-23,-2.7788425914120803e-23)
    sum e = 7.858771611915036e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.5630370723828457 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5969e+04 | 2592 |      1 | 4.631e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121504.00163582677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 832.0548227899535, dt = 1.5630370723828457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (3.3%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 138.37 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.545766119369841e-22,6.578953901087858e-21,9.449615365130163e-21)
    sum a = (2.528843675589502e-22,-3.042303430322384e-23,7.395855821990271e-23)
    sum e = 7.85867914060356e-13
    sum de = 4.543838814073028e-28
Info: cfl dt = 1.5630146755796135 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7275e+04 | 2592 |      1 | 4.526e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124337.99972591498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 833.6178598623363, dt = 1.5630146755796135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.8%)
   patch tree reduce : 2.01 us    (1.3%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 132.16 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.265256270196971e-22,6.4359835370336406e-21,9.644730831114257e-21)
    sum a = (1.3004308053059372e-22,-6.210007408014453e-23,7.997378488845632e-23)
    sum e = 7.858587334890423e-13
    sum de = -1.2116903504194741e-27
Info: cfl dt = 1.5629933386605688 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7153e+04 | 2592 |      1 | 4.535e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124070.73959244524 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 835.180874537916, dt = 1.5629933386605688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.7%)
   patch tree reduce : 1.45 us    (1.0%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 134.82 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.572759845179071e-24,6.314072963069299e-21,9.77443026794264e-21)
    sum a = (-8.082440622118639e-23,-2.0536414429901352e-23,-1.4032262097388568e-22)
    sum e = 7.85849637306682e-13
    sum de = -8.330371159133885e-28
Info: cfl dt = 1.5629730708636012 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7979e+04 | 2592 |      1 | 4.471e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125861.43737420731 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 836.7438678765766, dt = 1.5629730708636012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.4%)
   patch tree reduce : 1.31 us    (0.9%)
   gen split merge   : 981.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (1.0%)
   LB compute        : 130.39 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.828632609816809e-22,6.3145800412214166e-21,9.382948882680554e-21)
    sum a = (1.1322605827046759e-23,-2.8817303536908535e-23,5.900957810950811e-23)
    sum e = 7.85840643395646e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.5629538809252688 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8559e+04 | 2592 |      1 | 4.426e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127120.41134488482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 838.3068409474402, dt = 0.23934116796715443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (2.6%)
   patch tree reduce : 1.37 us    (0.9%)
   gen split merge   : 792.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 130.22 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.382625443877413e-22,6.301177773099606e-21,9.552847733688772e-21)
    sum a = (2.6282053185615454e-22,3.2864952587989767e-23,-1.2626979168807924e-23)
    sum e = 7.857215813834697e-13
    sum de = 3.7865323450608567e-28
Info: cfl dt = 1.56295147835942 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9470e+04 | 2592 |      1 | 4.358e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19769.054812722923 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 604                                                     [SPH][rank=0]
Info: time since start : 99.906596175 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.001017403 s
sph::RenderFieldGetter compute custom field took :  0.0007326870000000001 s
rho_t_ampl=-0.000735673, rho_t_phi=3.14159 rad
eps_t_ampl=-2.2686e-06, eps_t_phi=2.98142e-09 rad
vx_t_ampl=2.3614e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 849.73s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 838.5461821154073, dt = 1.56295147835942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.60 us   (4.5%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.6%)
   LB compute        : 227.79 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1009372740674943e-22,6.3598447896864585e-21,9.524539589284888e-21)
    sum a = (1.2670535092171372e-22,-1.7512158609047658e-22,-6.660621071672357e-23)
    sum e = 7.858339122967506e-13
    sum de = 1.5146129380243427e-27
Info: cfl dt = 1.5629330937849248 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5981e+04 | 2592 |      1 | 4.630e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121522.30356176093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 840.1091335937667, dt = 1.5629330937849248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.4%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 153.60 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9823897797500034e-22,5.923873115658868e-21,9.378255078430026e-21)
    sum a = (1.647554684629457e-22,-2.393514184972248e-22,2.0025472877104469e-22)
    sum e = 7.858233972612371e-13
    sum de = 1.0602290566170399e-27
Info: cfl dt = 1.5629162555136942 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5460e+04 | 2592 |      1 | 4.674e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120389.70244458236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 841.6720666875517, dt = 1.5629162555136942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.5%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 156.27 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.69365321588637e-22,5.4994679584682034e-21,9.899779346151643e-21)
    sum a = (-9.296218831809422e-23,-2.687133095274091e-24,9.498875898411209e-23)
    sum e = 7.858148548405201e-13
    sum de = 2.4486242498060206e-27
Info: cfl dt = 1.562900515807398 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5710e+04 | 2592 |      1 | 4.653e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120931.43775339914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 843.2349829430653, dt = 1.562900515807398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.7%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 150.28 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.505864690974521e-22,5.680218854210628e-21,9.965976378897656e-21)
    sum a = (-8.257029555506208e-23,-1.0544552772772429e-22,-6.8231798211895e-23)
    sum e = 7.858064715281866e-13
    sum de = -7.068193710780266e-28
Info: cfl dt = 1.5628858848959628 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4539e+04 | 2592 |      1 | 4.753e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118387.70994112984 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 844.7978834588728, dt = 1.5628858848959628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (2.5%)
   patch tree reduce : 1.32 us    (0.7%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.5%)
   LB compute        : 168.75 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4624390655523434e-22,5.434972752487384e-21,9.731789118055309e-21)
    sum a = (-1.6422271546768216e-22,-1.2266256604990025e-24,1.353646839628152e-22)
    sum e = 7.85798278691505e-13
    sum de = 1.5903435849255598e-27
Info: cfl dt = 1.5628723688558983 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5845e+04 | 2592 |      1 | 4.641e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121220.46964933135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 846.3607693437688, dt = 1.5628723688558983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (2.2%)
   patch tree reduce : 1.69 us    (1.0%)
   gen split merge   : 842.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 153.72 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3884955172940786e-22,5.5146803030317526e-21,1.01024458764423e-20)
    sum a = (9.920117520238529e-23,5.791763210255084e-23,2.1424610903585803e-22)
    sum e = 7.857902921525286e-13
    sum de = 1.3883951931889808e-27
Info: cfl dt = 1.5628599733054607 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5595e+04 | 2592 |      1 | 4.662e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120678.2006369483 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 847.9236417126247, dt = 1.5628599733054607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.4%)
   patch tree reduce : 1.46 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 153.88 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6021102122623985e-22,5.65146302988797e-21,1.0498923344522301e-20)
    sum a = (1.749612186131749e-22,4.141989055786548e-23,-6.807496194333701e-23)
    sum e = 7.857825275245509e-13
    sum de = 4.291403324402304e-28
Info: cfl dt = 1.5628487033513803 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6883e+04 | 2592 |      1 | 4.557e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123472.69887884431 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 849.4865016859301, dt = 0.24029619101611388 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.1%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 153.99 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6842697103271368e-22,5.648394886132115e-21,1.026195103973657e-20)
    sum a = (5.616371938019226e-23,9.76772328524174e-24,2.9156602547229166e-23)
    sum e = 7.857106009088559e-13
    sum de = 6.310887241768094e-28
Info: cfl dt = 1.56284755331015 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8048e+04 | 2592 |      1 | 4.465e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19373.29326880505 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 612                                                     [SPH][rank=0]
Info: time since start : 100.46034170700001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000743433 s
sph::RenderFieldGetter compute custom field took :  0.000605727 s
rho_t_ampl=-0.000564834, rho_t_phi=3.14159 rad
eps_t_ampl=-1.56328e-06, eps_t_phi=4.31375e-09 rad
vx_t_ampl=2.60353e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 860.91s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 849.7267978769462, dt = 1.56284755331015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.80 us   (4.4%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.6%)
   LB compute        : 221.31 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (76.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.625579741044771e-22,5.6598458661748876e-21,1.0319200551987346e-20)
    sum a = (-1.270904735688922e-24,2.8059188603014177e-22,4.1326582762547385e-23)
    sum e = 7.857768018863396e-13
    sum de = 5.048709793414476e-29
Info: cfl dt = 1.5628370992483347 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6460e+04 | 2592 |      1 | 4.591e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122552.31023589437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 851.2896454302563, dt = 1.5628370992483347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (2.0%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 761.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.6%)
   LB compute        : 157.36 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6701836871039977e-22,6.309952150744489e-21,1.0393297180615062e-20)
    sum a = (1.4148122315179401e-22,9.135931588392595e-24,-5.684151663304277e-23)
    sum e = 7.857680635662989e-13
    sum de = -6.058451752097371e-28
Info: cfl dt = 1.5628282713861616 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7382e+04 | 2592 |      1 | 4.517e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124554.81661259102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 852.8524825295046, dt = 1.5628282713861616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (1.9%)
   patch tree reduce : 681.00 ns  (0.4%)
   gen split merge   : 531.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.7%)
   LB compute        : 140.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 1.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.197172030471082e-22,6.1122686959477845e-21,1.0227753277583632e-20)
    sum a = (-2.39507774280285e-22,1.0185425904278514e-22,-5.311498518879582e-23)
    sum e = 7.857611047976298e-13
    sum de = -4.0389678347315804e-28
Info: cfl dt = 1.5628205790314542 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5159e+04 | 2592 |      1 | 4.699e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119726.91434916633 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 854.4153108008908, dt = 1.5628205790314542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.1%)
   patch tree reduce : 1.93 us    (1.1%)
   gen split merge   : 842.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 159.14 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.915483860661163e-23,6.3436054513971e-21,1.0147656050023281e-20)
    sum a = (1.6347814501647047e-22,-5.839432167079021e-23,2.1178905304231243e-22)
    sum e = 7.857544185726957e-13
    sum de = 2.4233807008389483e-27
Info: cfl dt = 1.5628140280546376 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4402e+04 | 2592 |      1 | 4.765e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118084.39374482234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 855.9781313799223, dt = 1.5628140280546376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.3%)
   patch tree reduce : 2.07 us    (1.2%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 157.75 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.669005366466949e-22,6.1273911785603255e-21,1.0685641694314544e-20)
    sum a = (-1.3046671544249004e-22,-1.9142330622528944e-22,1.1282244742805275e-23)
    sum e = 7.857480271577329e-13
    sum de = 8.330371159133885e-28
Info: cfl dt = 1.56280862086426 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5539e+04 | 2592 |      1 | 4.667e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120552.45213870528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 857.5409454079769, dt = 1.56280862086426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (2.3%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 158.53 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.791066292927007e-23,5.724007299194819e-21,1.0546596257295554e-20)
    sum a = (-4.864099033863965e-23,5.913528159718461e-23,7.540789505625916e-23)
    sum e = 7.857419428007167e-13
    sum de = -1.741804878727994e-27
Info: cfl dt = 1.5628043594103764 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5949e+04 | 2592 |      1 | 4.633e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121440.24587843234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 859.1037540288412, dt = 1.5628043594103764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (3.7%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 134.80 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.859139767768606e-23,6.012303694161829e-21,1.0714552103987947e-20)
    sum a = (7.720425333770885e-23,3.088886722392232e-23,1.0196668430424568e-22)
    sum e = 7.857361773030294e-13
    sum de = -6.563322731438818e-28
Info: cfl dt = 1.5628012451292417 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5957e+04 | 2592 |      1 | 4.632e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121457.50616916038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 860.6665583882516, dt = 0.24085525023326682 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (3.1%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.9%)
   LB compute        : 136.18 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0352096756157037e-22,5.997810245206346e-21,1.0759864411060023e-20)
    sum a = (-1.1271256140756297e-22,1.0811984847451477e-22,-1.1117864723462463e-22)
    sum e = 7.857020583907621e-13
    sum de = 0
Info: cfl dt = 1.5628013808753773 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7827e+04 | 2592 |      1 | 4.482e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19344.373767823323 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 620                                                     [SPH][rank=0]
Info: time since start : 101.007882631 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000820919 s
sph::RenderFieldGetter compute custom field took :  0.0007024010000000001 s
rho_t_ampl=-0.000379613, rho_t_phi=3.14159 rad
eps_t_ampl=-1.05454e-06, eps_t_phi=6.4468e-09 rad
vx_t_ampl=2.77938e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 872.09s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 860.9074136384849, dt = 1.5628013808753773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.37 us   (5.2%)
   patch tree reduce : 2.19 us    (1.0%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 189.42 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2183064477479364e-23,6.175980819212675e-21,1.0560445681555916e-20)
    sum a = (-4.717174743965381e-22,1.7759544749064e-23,1.241602449489014e-22)
    sum e = 7.857320331920344e-13
    sum de = -1.9185097214975007e-27
Info: cfl dt = 1.5627990739260305 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6093e+04 | 2592 |      1 | 4.621e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121753.62941203316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 862.4702150193602, dt = 1.5627990739260305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.8%)
   patch tree reduce : 1.79 us    (1.1%)
   gen split merge   : 931.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 149.46 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0376744605576458e-21,6.133116668581712e-21,1.0938377170219676e-20)
    sum a = (1.1794060134301059e-22,-1.556145473298403e-22,1.0013109610055638e-23)
    sum e = 7.857259259746454e-13
    sum de = 5.553580772755923e-28
Info: cfl dt = 1.5627984353944417 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5862e+04 | 2592 |      1 | 4.640e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121250.67757825372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 864.0330140932863, dt = 1.5627984353944417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (3.2%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 132.77 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4342670191060643e-22,5.7543228702385505e-21,1.0864831123552344e-20)
    sum a = (-1.1548223511185475e-22,-2.6501650821083103e-22,1.0526898801795117e-22)
    sum e = 7.857212406013912e-13
    sum de = -8.330371159133885e-28
Info: cfl dt = 1.5627989431213638 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6941e+04 | 2592 |      1 | 4.552e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123594.36591612067 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 865.5958125286808, dt = 1.5627989431213638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (3.6%)
   patch tree reduce : 2.02 us    (1.3%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 133.39 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.353275076794085e-22,5.25469042263236e-21,1.1103778255639028e-20)
    sum a = (2.6820583020586666e-23,2.3407408486878546e-22,1.0340501135759002e-22)
    sum e = 7.857169116228902e-13
    sum de = -2.398137151871876e-27
Info: cfl dt = 1.5628005985546025 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6747e+04 | 2592 |      1 | 4.568e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123172.25597696245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 867.1586114718021, dt = 1.5628005985546025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (3.2%)
   patch tree reduce : 1.77 us    (1.1%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 135.29 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.26642382594973e-22,6.010551386117167e-21,1.1263923158904937e-20)
    sum a = (1.0250681125733375e-22,-2.4059133289489856e-24,7.395392990513257e-23)
    sum e = 7.857129519073026e-13
    sum de = -9.34011311781678e-28
Info: cfl dt = 1.562803400433249 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6689e+04 | 2592 |      1 | 4.572e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123047.17740100707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 868.7214120703568, dt = 1.562803400433249 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (3.3%)
   patch tree reduce : 1.71 us    (1.1%)
   gen split merge   : 1.00 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 133.16 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8943602082685995e-22,5.821809195445789e-21,1.1356485528174921e-20)
    sum a = (1.8664648159964806e-22,7.927361059288983e-23,1.2943424999382761e-23)
    sum e = 7.857093689237045e-13
    sum de = 8.835242138475332e-28
Info: cfl dt = 1.5628073470436765 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6931e+04 | 2592 |      1 | 4.553e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123571.2987358924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 870.2842154707901, dt = 1.5628073470436765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.9%)
   patch tree reduce : 1.93 us    (1.2%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 139.31 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6349740114882938e-22,6.009633510474725e-21,1.1329039895595412e-20)
    sum a = (-8.950571255966753e-23,-1.258544204269258e-22,-8.868028334493807e-23)
    sum e = 7.857061695040126e-13
    sum de = 1.539856486991415e-27
Info: cfl dt = 1.5628124361630207 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7365e+04 | 2592 |      1 | 4.518e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124513.63086092366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 871.8470228178337, dt = 0.2410065821900389 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (3.2%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (1.0%)
   LB compute        : 135.93 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.292249996006201e-22,5.819151849180258e-21,1.1228258224581565e-20)
    sum a = (-1.9428153807996105e-22,-3.555256207195503e-23,-1.553672770875527e-22)
    sum e = 7.856968305606808e-13
    sum de = -7.573064690121713e-28
Info: cfl dt = 1.5628138552874362 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7159e+04 | 2592 |      1 | 4.535e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19132.816132575328 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 628                                                     [SPH][rank=0]
Info: time since start : 101.555481086 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00066808 s
sph::RenderFieldGetter compute custom field took :  0.000642182 s
rho_t_ampl=-0.00018472, rho_t_phi=3.14159 rad
eps_t_ampl=-7.54805e-07, eps_t_phi=9.03894e-09 rad
vx_t_ampl=2.88464e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 883.27s, niter_max = -1, max_walltime = -1.00s)     [SPH][rank=0]
---------------- t = 872.0880294000237, dt = 1.5628138552874362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.55 us   (4.6%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 203.71 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.07980285679064e-22,5.774150267857455e-21,1.0977412089071691e-20)
    sum a = (-1.0137390880355044e-22,1.807126843547747e-22,-2.647423850572621e-23)
    sum e = 7.857040215502778e-13
    sum de = -8.330371159133885e-28
Info: cfl dt = 1.5628197245101358 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5408e+04 | 2592 |      1 | 5.708e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98561.75302299611 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 873.6508432553112, dt = 1.5628197245101358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.5%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 150.55 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.262899628922873e-22,6.225847783311499e-21,1.1036755540216576e-20)
    sum a = (-6.287287682958037e-23,8.560629561080759e-23,6.41258672661813e-23)
    sum e = 7.857011334257795e-13
    sum de = 1.6155871338926322e-27
Info: cfl dt = 1.5628272662384943 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.5986e+04 | 2592 |      1 | 5.636e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99816.50132250633 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 875.2136629798214, dt = 1.5628272662384943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.3%)
   patch tree reduce : 1.64 us    (1.0%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 155.34 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.618531346991056e-22,6.285137414844623e-21,1.1207769010222643e-20)
    sum a = (-5.0263319489878914e-23,1.2863290732200424e-22,5.1287886474043397e-23)
    sum e = 7.856991812352849e-13
    sum de = -1.2116903504194741e-27
Info: cfl dt = 1.5628359388538213 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0416e+04 | 2592 |      1 | 5.141e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109431.89331911982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 876.7764902460599, dt = 1.5628359388538213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (2.9%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.6%)
   LB compute        : 133.00 us  (82.5%)
   LB move op cnt    : 0
   LB apply          : 13.74 us   (8.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.862663964795463e-22,6.5198760870106815e-21,1.1277891789219636e-20)
    sum a = (-3.2519515626094776e-22,1.6060617310902193e-23,-8.78668945238879e-23)
    sum e = 7.856976314861738e-13
    sum de = -2.1204581132340797e-27
Info: cfl dt = 1.5628457393799398 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7482e+04 | 2592 |      1 | 4.509e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124770.61290547955 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 878.3393261849137, dt = 1.5628457393799398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.62 us    (3.0%)
   patch tree reduce : 1.12 us    (0.7%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 136.94 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5889646925720404e-21,6.4569919774372255e-21,1.103183134107692e-20)
    sum a = (-1.2316342607594433e-22,1.138811177939171e-22,-1.0603215534408463e-22)
    sum e = 7.856964882833257e-13
    sum de = 2.4233807008389483e-27
Info: cfl dt = 1.562856662932953 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7082e+04 | 2592 |      1 | 4.541e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123903.01352384164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 879.9021719242936, dt = 1.562856662932953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (1.4%)
   patch tree reduce : 1.54 us    (0.6%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 236.02 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5355610188299604e-21,6.711384742030958e-21,1.085192353037347e-20)
    sum a = (2.6179153228322456e-22,1.387133672464554e-22,1.3359007774558905e-23)
    sum e = 7.856957535908179e-13
    sum de = -7.573064690121713e-28
Info: cfl dt = 1.562857473980683 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5458e+04 | 2592 |      1 | 4.674e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120379.95667821131 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 881.4650285872266, dt = 1.562857473980683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (2.1%)
   patch tree reduce : 1.57 us    (0.9%)
   gen split merge   : 711.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.5%)
   LB compute        : 152.25 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.98824908828238e-22,6.947586880256294e-21,1.096609739290618e-20)
    sum a = (5.044282274871225e-22,1.7183218486066145e-22,6.284244284108845e-23)
    sum e = 7.856954286105122e-13
    sum de = -2.9787387781145406e-27
Info: cfl dt = 1.5628442111983338 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7693e+04 | 2592 |      1 | 4.493e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125231.03249102045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 883.0278860612073, dt = 0.2407591003551488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.5%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 691.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.7%)
   LB compute        : 139.96 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.504686370337472e-22,7.01483571316444e-21,1.1019895061074572e-20)
    sum a = (-1.2771810313296585e-22,7.241618343164693e-23,-1.3004539391674222e-23)
    sum e = 7.856954522113428e-13
    sum de = -1.5146129380243427e-28
Info: cfl dt = 1.5628427648141194 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7757e+04 | 2592 |      1 | 4.488e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19313.21576949996 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 636                                                     [SPH][rank=0]
Info: time since start : 102.31432298300001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007167730000000001 s
sph::RenderFieldGetter compute custom field took :  0.000558936 s
rho_t_ampl=1.49007e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-6.71218e-07, eps_t_phi=1.03473e-08 rad
vx_t_ampl=2.91681e-06, vx_t_phi=4.71239 rad
----- 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": {
            "ballabio_ts_limiter": false,
            "drag_mode": {
                "stopping_times": [
                    1.0
                ],
                "type": "constant_stopping_times"
            },
            "mode": {
                "C_1_fluid": 0.1,
                "C_drift": 1.0,
                "cfl_density_threshold": 2.220446049250313e-16,
                "dust_corrected_av": false,
                "ensure_s_j_positivity": true,
                "ndust": 1,
                "pure_diffusion_mode": false,
                "smooth_s_positivity_limiter": false,
                "type": "monofluid_tva"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs": 0.1,
            "eos_type": "isothermal"
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "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"
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null,
        "use_two_stage_search": true
    }
]
------------------------------------
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 = 2592 ( 2.6e+03 ) Ntotal = 2592 ( 2.6e+03 rank min = 7.6e+06 max = 2.6e+03) rate = 2.592000e+03 N.s^-1
SPH setup: the generation step took : 0.000623163 s
SPH setup: final particle count = 2592 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     : 4.40 us    (64.3%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (0.3%)
   patch tree reduce : 921.00 ns  (0.5%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.6%)
   LB compute        : 179.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.7%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         2592 / 2592 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.003062364 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.6% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.004636731000000001 s
0.0001
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (1.7%)
   patch tree reduce : 411.00 ns  (0.3%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 310.00 ns  (0.2%)
   LB compute        : 137.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 1.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 581.00 ns  (57.5%)
Warning: High interface/patch volume 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.183256172839506
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.030555555555555558 unconverged cnt = 2592
Warning: High interface/patch volume 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.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03361111111111112 unconverged cnt = 2592
Warning: High interface/patch volume 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.3290895061728396
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.03697222222222223 unconverged cnt = 2592
Warning: High interface/patch volume 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.5088734567901234
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.04066944444444446 unconverged cnt = 2592
Warning: High interface/patch volume 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.579861111111111
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.04473638888888891 unconverged cnt = 2592
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1840277777777777
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.049210027777777804 unconverged cnt = 2592
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1032831504573026e-22,0,0)
    sum a = (-1.0934855038736845e-19,-2.9344313124921285e-19,-1.6317241325925873e-19)
    sum e = 7.856742013183865e-10
    sum de = 7.940933880509066e-23
Info: cfl dt = 0.0004013819880673238 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    | 1.5633e+04 | 2592 |      1 | 1.658e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
[ 4.44089210e-16-0.8130449j  -4.83780152e-01-0.09347755j
  4.83780152e-01-0.09347755j  0.00000000e+00+0.j        ]
k=6.283185307179586 cs=0.1 ts=1 epsilon_0=0.5
eigenval = [-4.33187233e-01-9.86960440e-02j  4.33187233e-01-9.86960440e-02j
 -6.56455075e-50-1.74393425e-17j]
eigenvec = [[ 8.03388312e-01+0.00000000e+00j  8.03388312e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.96456241e-02-1.74008780e-01j  3.96456241e-02+1.74008780e-01j
   4.47213595e-01+9.71445147e-17j]
 [-5.53887149e-01-1.26195941e-01j  5.53887149e-01-1.26195941e-01j
   9.45549854e-18+1.73080871e-16j]]
14.504548673460324
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 102.77699646800001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000684114 s
sph::RenderFieldGetter compute custom field took :  0.00055408 s
offset_rho=0.999981, ampl_rho=1.5987e-16, phi_rho=5.96884 rad
offset_eps=0.500009, ampl_eps=7.71362e-17, phi_eps=2.839 rad
offset_vx=0, ampl_vx=0.0001, phi_vx=4.71239 rad
eigenval = [-4.33187233e-01-9.86960440e-02j  4.33187233e-01-9.86960440e-02j
 -6.56455075e-50-1.74393425e-17j]
eigenvec = [[ 8.03388312e-01+0.00000000e+00j  8.03388312e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.96456241e-02-1.74008780e-01j  3.96456241e-02+1.74008780e-01j
   4.47213595e-01+9.71445147e-17j]
 [-5.53887149e-01-1.26195941e-01j  5.53887149e-01-1.26195941e-01j
   9.45549854e-18+1.73080871e-16j]]
eigenvec=[[ 8.03388312e-01+0.00000000e+00j  8.03388312e-01+0.00000000e+00j
   8.94427191e-01+0.00000000e+00j]
 [ 3.96456241e-02-1.74008780e-01j  3.96456241e-02+1.74008780e-01j
   4.47213595e-01+9.71445147e-17j]
 [-5.53887149e-01-1.26195941e-01j  5.53887149e-01-1.26195941e-01j
   9.45549854e-18+1.73080871e-16j]]
v=[1.59870093e-16+0.j    7.71362122e-17+0.j    0.00000000e+00-0.001j]
c=[ 0.00039104+8.13616959e-04j  0.00039104-8.13616959e-04j
 -0.00070248+2.44564918e-19j]
coefs=[ 0.00039104+8.13616959e-04j  0.00039104-8.13616959e-04j
 -0.00070248+2.44564918e-19j]
coefs=[ 0.00039104+8.13616959e-04j  0.00039104-8.13616959e-04j
 -0.00070248+2.44564918e-19j]
decomp=[ 1.59919820e-16-1.06515139e-19j  7.71409846e-17+7.24921663e-21j
 -2.01948397e-20-1.00000000e-03j]
rho_t_ampl=-1.5987e-16, rho_t_phi=2.82724 rad
eps_t_ampl=-7.71362e-17, eps_t_phi=5.98059 rad
vx_t_ampl=0.0001, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 0.36s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0, dt = 0.0004013819880673238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.25 us   (4.3%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 232.30 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.6807455133002795e-22,-1.1778278724396234e-22,-6.549446763174435e-23)
    sum a = (-8.670925999397529e-20,2.2028816448602837e-19,2.6634977410667595e-20)
    sum e = 7.856742013183861e-10
    sum de = 9.26442286059391e-23
Info: cfl dt = 0.013646985720160777 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.7162e+04 | 2592 |      1 | 5.496e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.29182474937257 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0004013819880673238, dt = 0.013646985720160777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (2.1%)
   patch tree reduce : 1.36 us    (0.7%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.81 us    (1.0%)
   LB compute        : 168.83 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6291039380716283e-22,2.9915878910320702e-21,3.3608532265692133e-22)
    sum a = (1.2413458022726806e-19,-1.6423779061230265e-19,2.0255173163402422e-20)
    sum e = 7.856742013202578e-10
    sum de = -4.632211430296955e-23
Info: cfl dt = 0.022477283162944537 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    | 4.5092e+04 | 2592 |      1 | 5.748e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 854.6833369033399 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0140483677082281, dt = 0.022477283162944537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (1.8%)
   patch tree reduce : 1.51 us    (0.8%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.7%)
   LB compute        : 182.41 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9971784894016564e-21,-3.323841524585548e-21,7.478340366352647e-22)
    sum a = (1.9452719497917462e-19,1.0283168948974962e-19,-1.3124301635169477e-19)
    sum e = 7.856742067953813e-10
    sum de = -6.782881022934827e-23
Info: cfl dt = 0.02836397156442427 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.5068e+04 | 2592 |      1 | 5.751e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1406.94674877306 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.03652565087117264, dt = 0.02836397156442427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (2.9%)
   patch tree reduce : 1.48 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 163.08 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.676983499169155e-21,2.5943726951763416e-21,-4.677372999395613e-21)
    sum a = (-2.821735097234214e-19,-1.7836145202301427e-19,-8.72348608028432e-20)
    sum e = 7.856742562556669e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.03228823016805111 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.0645e+04 | 2592 |      1 | 6.377e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1601.1708417012314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06488962243559691, dt = 0.03228823016805111 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (1.9%)
   patch tree reduce : 811.00 ns  (0.5%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.7%)
   LB compute        : 138.35 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.53 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.940834396509099e-21,-7.152479449897227e-21,-6.86990922738046e-21)
    sum a = (3.7075295096693846e-20,1.6891953968909955e-19,-1.0606446860143475e-19)
    sum e = 7.856744130050161e-10
    sum de = 1.0587911840678754e-22
Info: cfl dt = 0.034904196809531905 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.1145e+04 | 2592 |      1 | 6.300e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1845.136968101655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09717785260364803, dt = 0.034904196809531905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (2.7%)
   patch tree reduce : 1.78 us    (1.0%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.8%)
   LB compute        : 158.86 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0516415752286513e-21,4.350070621472359e-21,-1.0875991669230821e-20)
    sum a = (-3.2981205148629864e-19,-3.8632525683138376e-20,-1.8964779840239065e-19)
    sum e = 7.856747320409651e-10
    sum de = -4.301339185275744e-23
Info: cfl dt = 0.03664796968834204 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    | 3.9678e+04 | 2592 |      1 | 6.533e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1923.5093823842553 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13208204941317994, dt = 0.03664796968834204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (2.9%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 151.05 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9350204984207183e-20,-6.879534103822164e-22,-1.9284902933226983e-20)
    sum a = (-1.8744525164473933e-19,4.463378919474776e-21,2.4141729435399687e-21)
    sum e = 7.856752462151307e-10
    sum de = 2.9778502051908996e-23
Info: cfl dt = 0.037810282529431846 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    | 3.9620e+04 | 2592 |      1 | 6.542e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2016.671014066476 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16873001910152197, dt = 0.037810282529431846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (3.0%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 1.08 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 152.57 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5081651569203333e-20,2.704836701961576e-22,-1.567428172007244e-20)
    sum a = (-4.631560952503884e-19,3.912036310780365e-19,-6.801259535475456e-20)
    sum e = 7.856759683075199e-10
    sum de = -1.6543612251060553e-23
Info: cfl dt = 0.03858495772083536 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.9773e+04 | 2592 |      1 | 6.517e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2088.6487738433857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20654030163095383, dt = 0.03858495772083536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (3.1%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 149.31 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.937457195698518e-20,2.267641701892e-20,-1.9629972839816437e-20)
    sum a = (-3.6618981244442285e-19,5.723866087557521e-21,-1.0947056055164234e-19)
    sum e = 7.856768980503304e-10
    sum de = 6.782881022934827e-23
Info: cfl dt = 0.039101209616246115 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.0513e+04 | 2592 |      1 | 6.398e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2171.1091430326705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2451252593517892, dt = 0.039101209616246115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (2.7%)
   patch tree reduce : 1.42 us    (0.8%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 155.71 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.784028663757583e-20,1.5463409226600248e-20,-2.471023109191077e-20)
    sum a = (-1.771851735264148e-19,2.5773665616496737e-20,-2.875409183489063e-20)
    sum e = 7.85678028431228e-10
    sum de = 1.1911400820763599e-22
Info: cfl dt = 0.039445180519248724 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.8272e+04 | 2592 |      1 | 6.773e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2078.4475483897927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.28422646896803533, dt = 0.039445180519248724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (2.6%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.8%)
   LB compute        : 155.79 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.504403142789209e-20,1.6872064309796422e-20,-2.4266385653616885e-20)
    sum a = (-2.1491281503774267e-19,-6.967615825393889e-20,-9.952444014449851e-20)
    sum e = 7.856793498106225e-10
    sum de = 3.8050308177439273e-23
Info: cfl dt = 0.03967429814596573 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.1112e+04 | 2592 |      1 | 6.305e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2252.332685048405 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.32367164948728405, dt = 0.03894206734922406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.7%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 1.05 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 151.00 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.077547801288823e-20,1.2276166292105235e-20,-2.953784768685873e-20)
    sum a = (1.1699512524418746e-19,-1.3606760545009268e-19,9.951816186808374e-20)
    sum e = 7.85680658557527e-10
    sum de = -6.28657265540301e-23
Info: cfl dt = 0.03982685775766367 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.3461e+04 | 2592 |      1 | 5.964e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2350.6516926916897 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 13                                                      [SPH][rank=0]
Info: time since start : 103.701354291 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008335170000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007086610000000001 s
rho_t_ampl=0.000221737, rho_t_phi=3.14159 rad
eps_t_ampl=-3.84544e-06, eps_t_phi=6.28319 rad
vx_t_ampl=9.86971e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 0.73s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.3626137168365081, dt = 0.03982685775766367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.08 us   (4.7%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.7%)
   LB compute        : 208.28 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.0048733945556e-20,5.564329030963843e-21,-2.1698786803365562e-20)
    sum a = (1.722227398433046e-19,-3.399763881145346e-20,-9.734712965151948e-20)
    sum e = 7.856824695400918e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.03992836143815935 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    | 5.7579e+04 | 2592 |      1 | 4.502e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3184.977186004081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.40244057459417176, dt = 0.03992836143815935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.7%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 862.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 138.97 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.926940779946231e-20,6.239404100492181e-21,-2.950596116244423e-20)
    sum a = (1.4789038289645168e-19,6.905276022495112e-20,1.1080905233113703e-19)
    sum e = 7.856843153281747e-10
    sum de = 7.940933880509066e-23
Info: cfl dt = 0.03999583473993659 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    | 5.7455e+04 | 2592 |      1 | 4.511e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3186.2405094384435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.44236893603233113, dt = 0.03999583473993659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.9%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 134.34 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5010259419786274e-20,1.1058498343677949e-20,-2.0918392982824513e-20)
    sum a = (4.932527625814634e-19,1.8185915034678834e-19,2.7079217349501876e-20)
    sum e = 7.856863036914066e-10
    sum de = 1.4889251025954498e-23
Info: cfl dt = 0.040040621027494075 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    | 5.7920e+04 | 2592 |      1 | 4.475e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3217.4417146945193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4823647707722677, dt = 0.040040621027494075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.6%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 732.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.72 us    (1.1%)
   LB compute        : 138.24 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0401846559435835e-20,2.0596237215599163e-20,-2.1508546624575565e-20)
    sum a = (-3.222788471087428e-19,1.5084110275718205e-19,-1.1179766695540415e-21)
    sum e = 7.856884396433742e-10
    sum de = -4.963083675318166e-23
Info: cfl dt = 0.04007028250896176 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    | 5.7670e+04 | 2592 |      1 | 4.495e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3207.158424346745 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5224053917997618, dt = 0.04007028250896176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (3.0%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 147.07 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.774452751538077e-20,2.6019438052504458e-20,-2.2117860845440882e-20)
    sum a = (3.9926229679540267e-19,-1.5313671615764026e-19,1.9928273187527395e-20)
    sum e = 7.856907162128235e-10
    sum de = -1.819797347616661e-23
Info: cfl dt = 0.040089860654600996 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    | 5.3953e+04 | 2592 |      1 | 4.804e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3002.668812645572 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5624756743087235, dt = 0.040089860654600996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.5%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 138.48 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 601.00 ns  (55.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7430959109414896e-20,1.37900673713868e-20,-2.0897274561502248e-20)
    sum a = (1.9924992832668094e-19,2.1030315369944792e-20,6.335766286182055e-20)
    sum e = 7.856931267380156e-10
    sum de = 1.3234889800848443e-23
Info: cfl dt = 0.040102716464576485 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.3950e+04 | 2592 |      1 | 5.898e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2447.133206083291 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6025655349633244, dt = 0.040102716464576485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (2.9%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 138.40 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.451265373815539e-20,1.8124731883463747e-20,-1.748592108171754e-20)
    sum a = (-2.648690762410262e-19,-6.050713259507094e-20,-7.980337362228905e-20)
    sum e = 7.856956647034051e-10
    sum de = 1.6543612251060553e-23
Info: cfl dt = 0.04011109064036675 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    | 5.2527e+04 | 2592 |      1 | 4.935e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2925.6357511751066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.642668251427901, dt = 0.04011109064036675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (3.3%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 142.83 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5414030045824834e-20,1.4062721368167578e-20,-2.3557494661937114e-20)
    sum a = (4.356425225384688e-20,-1.0415819149359184e-19,1.7694706104446478e-20)
    sum e = 7.856983236600584e-10
    sum de = -5.1285197978287716e-23
Info: cfl dt = 0.04011647702747121 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    | 5.6330e+04 | 2592 |      1 | 4.601e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3138.157641155235 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6827793420682677, dt = 0.04011647702747121 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.8%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 140.66 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.931450890949866e-20,9.008801800220136e-21,-2.0892268234400214e-20)
    sum a = (3.4321637359556073e-19,1.4812543608544626e-19,3.87344513879483e-20)
    sum e = 7.85701097174682e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.04011987157386627 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    | 5.5944e+04 | 2592 |      1 | 4.633e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3117.0694612470343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.722895819095739, dt = 0.0023316145772772634 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.5%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 147.16 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1584943331568068e-20,1.441458867476218e-20,-2.0379934193735775e-20)
    sum a = (-3.4027834994476567e-19,-1.9270487163725558e-19,8.776804505523769e-20)
    sum e = 7.856799053172474e-10
    sum de = 4.4667753077863494e-23
Info: cfl dt = 0.04012249226900421 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    | 6.1456e+04 | 2592 |      1 | 4.218e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 199.01737370384842 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 23                                                      [SPH][rank=0]
Info: time since start : 104.35544352500001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006482910000000001 s
sph::RenderFieldGetter compute custom field took :  0.000531215 s
rho_t_ampl=0.000437794, rho_t_phi=3.14159 rad
eps_t_ampl=-1.4917e-05, eps_t_phi=6.28319 rad
vx_t_ampl=9.49357e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.09s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7252274336730162, dt = 0.04012249226900421 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.92 us   (5.0%)
   patch tree reduce : 2.19 us    (1.0%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 189.48 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4046895998027585e-20,6.2851630896877685e-21,-1.6801297763655887e-20)
    sum a = (2.1692079317044487e-19,6.50436463052449e-20,7.416943717054361e-20)
    sum e = 7.857029920584182e-10
    sum de = -8.023651941764368e-23
Info: cfl dt = 0.04012367399976547 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    | 5.8159e+04 | 2592 |      1 | 4.457e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3240.942680047136 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7653499259420204, dt = 0.04012367399976547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.8%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 140.40 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3382139044784588e-20,1.40657574183695e-20,-1.4098152465739944e-20)
    sum a = (-2.584277715927507e-19,-2.4540184532176306e-19,6.36350198304433e-20)
    sum e = 7.857065627761004e-10
    sum de = -4.0531850015098356e-23
Info: cfl dt = 0.04012426564063797 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    | 5.8043e+04 | 2592 |      1 | 4.466e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3234.5698785500504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8054735999417859, dt = 0.04012426564063797 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.3%)
   patch tree reduce : 1.21 us    (0.7%)
   gen split merge   : 1.16 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (1.0%)
   LB compute        : 155.73 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.260088883208819e-20,-2.0088510773691438e-21,-1.175618378958343e-20)
    sum a = (6.938731113358641e-19,-6.433314637088694e-20,6.618164862533265e-20)
    sum e = 7.857096452927009e-10
    sum de = -1.1580528575742387e-23
Info: cfl dt = 0.04012446410365767 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    | 5.5979e+04 | 2592 |      1 | 4.630e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3119.6187224066175 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8455978655824239, dt = 0.04012446410365767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (2.1%)
   patch tree reduce : 1.31 us    (0.8%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 151.23 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0937072382377974e-20,-9.575689499445258e-22,-9.049589799866777e-21)
    sum a = (-2.214625702234636e-19,1.052517857625198e-19,1.3021771686465607e-19)
    sum e = 7.857128169748323e-10
    sum de = 1.166324663699769e-22
Info: cfl dt = 0.04012440070082066 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.6201e+04 | 2592 |      1 | 5.610e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2574.7338425480584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8857223296860816, dt = 0.04012440070082066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (1.8%)
   patch tree reduce : 1.09 us    (0.7%)
   gen split merge   : 561.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 147.01 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4749273092581835e-20,6.667718252551707e-21,-2.5399754893405404e-21)
    sum a = (-2.3392452288992313e-20,7.96071105579847e-20,8.1935663440788e-20)
    sum e = 7.857160703423493e-10
    sum de = 4.218621124020441e-23
Info: cfl dt = 0.04012416303487777 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    | 4.5743e+04 | 2592 |      1 | 5.666e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2549.168494929636 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9258467303869022, dt = 0.04012416303487777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (1.9%)
   patch tree reduce : 781.00 ns  (0.5%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 144.09 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1830967721322327e-20,9.347247582560568e-21,-2.210198001890876e-22)
    sum a = (-3.429008811229921e-19,1.2868744881252554e-20,-1.4043098679783887e-19)
    sum e = 7.857193988591e-10
    sum de = -1.075334796318936e-23
Info: cfl dt = 0.040123809568826656 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.6123e+04 | 2592 |      1 | 5.620e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2570.339934779444 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.96597089342178, dt = 0.040123809568826656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (1.9%)
   patch tree reduce : 882.00 ns  (0.5%)
   gen split merge   : 520.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 152.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.089197127234163e-20,8.524856681775682e-21,-1.0316783835875216e-20)
    sum a = (5.606564147937747e-20,-1.8129345652776947e-19,-5.188718720107904e-20)
    sum e = 7.857227959363749e-10
    sum de = 7.610061635487855e-23
Info: cfl dt = 0.04012337933887674 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    | 5.5276e+04 | 2592 |      1 | 4.689e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3080.382222858158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0060947029906067, dt = 0.04012337933887674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (1.2%)
   patch tree reduce : 781.00 ns  (0.4%)
   gen split merge   : 551.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.4%)
   LB compute        : 208.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 1.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2084473079801677e-20,-2.6443547948998952e-21,-1.0622315854011535e-20)
    sum a = (2.1727572220208455e-19,-1.1551294222425644e-19,1.0793398131466771e-19)
    sum e = 7.857262549968976e-10
    sum de = -5.542110104105285e-23
Info: cfl dt = 0.040122898429647516 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    | 5.8092e+04 | 2592 |      1 | 4.462e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3237.3012959109105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0462180823294833, dt = 0.040122898429647516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (1.5%)
   patch tree reduce : 811.00 ns  (0.6%)
   gen split merge   : 570.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.5%)
   LB compute        : 131.99 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 1.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0411251594763649e-20,-5.9594263547042264e-21,-3.0854089992466424e-21)
    sum a = (-1.9714993155614623e-19,-1.1923589717968748e-19,-9.314900041998332e-20)
    sum e = 7.85729769483136e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.04012238429088929 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    | 5.7880e+04 | 2592 |      1 | 4.478e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3225.4350238140023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0863409807591309, dt = 0.0015001697503935763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (2.1%)
   patch tree reduce : 1.17 us    (0.8%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.7%)
   LB compute        : 132.03 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.690513832180057e-20,-6.213003943028098e-21,-7.259164337990369e-21)
    sum a = (-1.7640630148476107e-19,-1.48371478107307e-19,-7.212353694349266e-20)
    sum e = 7.856853038582048e-10
    sum de = -2.0679515313825692e-23
Info: cfl dt = 0.0401224085472098 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    | 6.0792e+04 | 2592 |      1 | 4.264e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.66477554297565 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 33                                                      [SPH][rank=0]
Info: time since start : 105.014708317 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007802680000000001 s
sph::RenderFieldGetter compute custom field took :  0.000766748 s
rho_t_ampl=0.000642965, rho_t_phi=3.14159 rad
eps_t_ampl=-3.24319e-05, eps_t_phi=6.28319 rad
vx_t_ampl=8.89683e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.45s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.0878411505095245, dt = 0.0401224085472098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 15.08 us   (6.8%)
   patch tree reduce : 1.96 us    (0.9%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 189.53 us  (85.7%)
   LB move op cnt    : 0
   LB apply          : 5.47 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.602812898690912e-20,-1.2188310188217649e-20,-1.0137163470958327e-20)
    sum a = (-1.32835476471069e-19,-1.8347802623162456e-19,-1.311156703833489e-19)
    sum e = 7.857320368040566e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.04012185761252067 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    | 5.8743e+04 | 2592 |      1 | 4.412e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3273.4854725695423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1279635590567343, dt = 0.04012185761252067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (2.4%)
   patch tree reduce : 1.05 us    (0.7%)
   gen split merge   : 691.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.8%)
   LB compute        : 133.77 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9104180594452926e-20,-2.0253625689958418e-20,-1.6581220968322272e-20)
    sum a = (-2.172888677217749e-19,4.7762140457778395e-21,-1.3173170933534707e-19)
    sum e = 7.857363558770276e-10
    sum de = 3.7223127564886245e-23
Info: cfl dt = 0.040121298089210056 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    | 5.7511e+04 | 2592 |      1 | 4.507e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3204.7718120290265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.168085416669255, dt = 0.040121298089210056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.2%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 551.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 147.90 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.69 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.046190960692236e-20,-1.6285784080608168e-20,-2.187882645992516e-20)
    sum a = (5.774169523989814e-20,1.0989936884414005e-20,-1.3920063330807566e-19)
    sum e = 7.857399993682058e-10
    sum de = 4.4667753077863494e-23
Info: cfl dt = 0.040120733594195664 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    | 5.6893e+04 | 2592 |      1 | 4.556e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3170.3106936787326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.208206714758465, dt = 0.040120733594195664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.8%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 1.12 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.9%)
   LB compute        : 132.68 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9735165539590114e-20,-1.5719294341451796e-20,-2.7613489447579754e-20)
    sum a = (2.444606569217452e-19,2.7629581923187e-19,5.697217360503619e-20)
    sum e = 7.857436717290305e-10
    sum de = 2.6469779601696886e-23
Info: cfl dt = 0.04012016657773062 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    | 5.7708e+04 | 2592 |      1 | 4.492e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3215.6712066391065 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2483274483526607, dt = 0.04012016657773062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.7%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 138.03 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.000748096872509e-20,6.874696000566985e-22,-2.1392457889957553e-20)
    sum a = (-2.392090218054471e-19,3.897523348944092e-19,-6.605375425838394e-20)
    sum e = 7.857473670525953e-10
    sum de = -2.481541837659083e-23
Info: cfl dt = 0.04011959873035092 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    | 5.7856e+04 | 2592 |      1 | 4.480e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3223.8563234554754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2884476149303914, dt = 0.04011959873035092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.8%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 136.24 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.686003721176423e-20,1.8600088766876123e-20,-2.6510418365067735e-20)
    sum a = (-2.4924562608903554e-19,-2.621908820028609e-19,-2.647279559449907e-20)
    sum e = 7.85751079140654e-10
    sum de = -3.3914405114674135e-23
Info: cfl dt = 0.040119031235373845 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.3671e+04 | 2592 |      1 | 5.935e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2433.4468891899232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3285672136607423, dt = 0.040119031235373845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (3.3%)
   patch tree reduce : 1.86 us    (1.1%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 143.99 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7770818554761485e-20,-4.996350150905048e-21,-2.677849518893089e-20)
    sum a = (-3.1290280518959485e-19,1.440837793020535e-19,1.3280866119100675e-19)
    sum e = 7.857548018170337e-10
    sum de = -3.970466940254533e-23
Info: cfl dt = 0.040118464937274945 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    | 5.5880e+04 | 2592 |      1 | 4.639e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3113.673861203951 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3686862448961161, dt = 0.040118464937274945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.8%)
   patch tree reduce : 1.49 us    (1.0%)
   gen split merge   : 912.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 134.68 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.170506942654112e-20,8.93322789942215e-21,-1.8255306701575505e-20)
    sum a = (1.6359599254650707e-19,-1.4683186046326012e-20,4.4715575580174953e-20)
    sum e = 7.85758528990294e-10
    sum de = 1.3234889800848443e-23
Info: cfl dt = 0.04011790045392266 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    | 5.5629e+04 | 2592 |      1 | 4.659e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3099.629494217091 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4088047098333911, dt = 0.04011790045392266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (2.8%)
   patch tree reduce : 1.93 us    (1.1%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 154.60 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.784969167290364e-20,5.159642153308716e-21,-1.8228491374859016e-20)
    sum a = (-2.3275457163748127e-19,-1.0119451867449472e-19,3.303365855982043e-20)
    sum e = 7.857622546606311e-10
    sum de = 5.790264287871194e-24
Info: cfl dt = 0.04011733825138797 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    | 5.5476e+04 | 2592 |      1 | 4.672e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3091.0942332708623 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4489226102873138, dt = 0.0015322570587186224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.7%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 151.34 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2608369800813284e-20,3.2692548022116665e-21,-1.8412202310421e-20)
    sum a = (-3.972050229638616e-19,-2.7959904185156283e-20,5.882816957895947e-20)
    sum e = 7.856913998135298e-10
    sum de = 8.106370003019671e-23
Info: cfl dt = 0.04011731759065334 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    | 5.9911e+04 | 2592 |      1 | 4.326e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.49805414765109 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 43                                                      [SPH][rank=0]
Info: time since start : 105.658587987 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008204690000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006828530000000001 s
rho_t_ampl=0.000832658, rho_t_phi=3.14159 rad
eps_t_ampl=-5.54982e-05, eps_t_phi=6.28319 rad
vx_t_ampl=8.1087e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 1.81s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.4504548673460325, dt = 0.04011731759065334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.36 us   (5.4%)
   patch tree reduce : 2.02 us    (1.0%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.6%)
   LB compute        : 182.10 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.127500776112184e-20,2.203774486527736e-21,-1.6032412037353674e-20)
    sum a = (1.564316843152619e-21,-1.9324822834273809e-19,2.0100496525113142e-20)
    sum e = 7.857646304500184e-10
    sum de = 6.948317145445432e-23
Info: cfl dt = 0.040116757906437955 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    | 5.7755e+04 | 2592 |      1 | 4.488e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3218.0321882302146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4905721849366858, dt = 0.040116757906437955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (2.9%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 141.03 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.057455473317031e-20,-8.865009841185272e-21,-1.600287046417986e-20)
    sum a = (-1.4074907932466462e-19,-5.255794440887605e-21,-7.034908407081392e-20)
    sum e = 7.857690658492976e-10
    sum de = 3.556876633978019e-23
Info: cfl dt = 0.040116201237603594 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    | 5.8898e+04 | 2592 |      1 | 4.401e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3281.646014252669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5306889428431236, dt = 0.040116201237603594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (2.4%)
   patch tree reduce : 1.24 us    (0.8%)
   gen split merge   : 782.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 134.61 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.203744790316262e-20,-5.303780722726041e-21,-2.063928044140011e-20)
    sum a = (-2.2318463330290055e-19,-1.8153007588219592e-19,1.214485762985575e-19)
    sum e = 7.857727537185162e-10
    sum de = 3.226004388956808e-23
Info: cfl dt = 0.04011564782319537 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    | 5.8430e+04 | 2592 |      1 | 4.436e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3255.549425996446 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5708051440807271, dt = 0.04011564782319537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.9%)
   patch tree reduce : 1.86 us    (1.2%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 134.70 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.079236401694113e-20,-1.6122209654929904e-20,-1.1920195355837309e-20)
    sum a = (-1.227660083882547e-19,-2.387600201485233e-19,-5.283508222616431e-20)
    sum e = 7.857764144269488e-10
    sum de = 4.4667753077863494e-23
Info: cfl dt = 0.0401150978604558 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    | 5.7656e+04 | 2592 |      1 | 4.496e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3212.36982339221 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.6109207919039226, dt = 0.0401150978604558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.7%)
   patch tree reduce : 1.75 us    (1.0%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.9%)
   LB compute        : 150.25 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.147593104083977e-20,-2.6847875378850046e-20,-1.753543078316254e-20)
    sum a = (2.1244474371587792e-19,5.564714153611022e-20,1.2661869957975302e-20)
    sum e = 7.857800449654099e-10
    sum de = 1.819797347616661e-23
Info: cfl dt = 0.0401145515311865 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    | 5.7070e+04 | 2592 |      1 | 4.542e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3179.6993707560155 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6510358897643784, dt = 0.0401145515311865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.7%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 882.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 139.76 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.917172461066453e-20,-1.8710644641459486e-20,-1.5713797225039067e-20)
    sum a = (1.693011480921225e-19,1.0403194828984674e-19,7.7247173877717e-20)
    sum e = 7.85783640059725e-10
    sum de = 1.075334796318936e-23
Info: cfl dt = 0.04011400900610176 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    | 5.7858e+04 | 2592 |      1 | 4.480e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3223.5557947926313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.691150441295565, dt = 0.04011400900610176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.8%)
   patch tree reduce : 1.44 us    (1.0%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 133.65 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.3939807773902e-20,-1.3567357363234284e-20,-1.1319698145290415e-20)
    sum a = (-4.874358701184799e-19,-2.2318458195321422e-19,8.180524519162657e-20)
    sum e = 7.857871945197009e-10
    sum de = -4.3840572465310467e-23
Info: cfl dt = 0.04011347044771725 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    | 5.8594e+04 | 2592 |      1 | 4.424e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3264.474233753747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7312644503016668, dt = 0.04011347044771725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (3.0%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 1.05 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.9%)
   LB compute        : 133.21 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.604116685775658e-20,-2.908343532119158e-20,-7.94678460295909e-21)
    sum a = (2.994155019872874e-19,8.173658204845015e-20,5.1727215602779747e-20)
    sum e = 7.857907032909334e-10
    sum de = 8.106370003019671e-23
Info: cfl dt = 0.04011293601226497 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    | 5.8089e+04 | 2592 |      1 | 4.462e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3236.342019362722 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.771377920749384, dt = 0.04011293601226497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (3.0%)
   patch tree reduce : 1.77 us    (1.2%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 133.74 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.888252317747666e-20,-1.9688496717488745e-20,-6.475121188910888e-21)
    sum a = (-1.2397539619976764e-19,-1.4840413650778774e-19,1.8658034493374908e-19)
    sum e = 7.857941614591754e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.04011240585096028 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    | 5.8869e+04 | 2592 |      1 | 4.403e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3279.7175311471865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.811490856761649, dt = 0.0015777274208914616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (2.3%)
   patch tree reduce : 1.85 us    (1.2%)
   gen split merge   : 711.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 135.06 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.582335757398576e-20,-2.4538885385113156e-20,-3.4760707885570006e-21)
    sum a = (-4.259148379676038e-20,1.8643191693548337e-19,1.352418592936097e-20)
    sum e = 7.85697326857728e-10
    sum de = -5.293955920339377e-23
Info: cfl dt = 0.040112385101120716 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    | 5.9258e+04 | 2592 |      1 | 4.374e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.85142796913135 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 106.291865505 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000820739 s
sph::RenderFieldGetter compute custom field took :  0.000768069 s
rho_t_ampl=0.00100296, rho_t_phi=3.14159 rad
eps_t_ampl=-8.31389e-05, eps_t_phi=6.28319 rad
vx_t_ampl=7.16142e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2.18s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.8130685841825405, dt = 0.040112385101120716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.20 us   (5.6%)
   patch tree reduce : 1.88 us    (0.9%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 191.94 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.010879699304251e-20,-1.6795352692511564e-20,-3.0701011580854493e-21)
    sum a = (-1.7700442263067238e-19,1.9496962387625322e-21,2.2125812762801457e-19)
    sum e = 7.8579634787726e-10
    sum de = 3.639594695233322e-23
Info: cfl dt = 0.04011185954571043 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.4675e+04 | 2592 |      1 | 5.802e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2488.926333585382 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8531809692836612, dt = 0.04011185954571043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.6%)
   patch tree reduce : 1.71 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 163.15 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.873225790991745e-20,-2.041684066783265e-20,9.97132571467249e-21)
    sum a = (6.236234541105902e-20,3.7825359964338616e-20,1.274368528526914e-19)
    sum e = 7.858003424509185e-10
    sum de = -1.6543612251060553e-23
Info: cfl dt = 0.04011133855002091 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.5201e+04 | 2592 |      1 | 5.734e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2518.196057376507 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8932928288293716, dt = 0.04011133855002091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.6%)
   patch tree reduce : 1.81 us    (1.1%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 153.72 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.934635685100174e-20,-1.818153747392257e-20,1.3201315565099936e-20)
    sum a = (-1.5581384488981506e-19,-1.4032965508704413e-19,-9.530495968582238e-20)
    sum e = 7.858036230368953e-10
    sum de = 2.2333876538931747e-23
Info: cfl dt = 0.04011082226537305 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.6220e+04 | 2592 |      1 | 5.608e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2574.952010675278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9334041673793925, dt = 0.04011082226537305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.2%)
   patch tree reduce : 1.64 us    (0.9%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.8%)
   LB compute        : 163.17 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.291253317145134e-20,-2.738412015278134e-20,4.9113191401454e-21)
    sum a = (-4.238115548171465e-20,-3.1341332377069463e-20,-1.7598417055703588e-21)
    sum e = 7.858068298303279e-10
    sum de = 4.0531850015098356e-23
Info: cfl dt = 0.04011031082849837 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.5571e+04 | 2592 |      1 | 5.688e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2538.7614910173256 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9735149896447655, dt = 0.04011031082849837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (3.2%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 154.75 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.991535468204968e-20,-2.6452534144099785e-20,6.716817142873685e-21)
    sum a = (-1.6247862337282663e-19,-3.031531429529975e-20,-1.461180119927919e-19)
    sum e = 7.858099634994723e-10
    sum de = 9.098986738083304e-24
Info: cfl dt = 0.04010980437324444 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.5117e+04 | 2592 |      1 | 5.745e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2513.405849717126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.013625300473264, dt = 0.04010980437324444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.4%)
   patch tree reduce : 1.79 us    (1.0%)
   gen split merge   : 1.21 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 165.37 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.911721846530039e-20,-2.765006017807964e-20,-2.0390732739926227e-21)
    sum a = (-8.389470666386567e-20,5.470261540648346e-20,-7.654649776768093e-20)
    sum e = 7.858130200865449e-10
    sum de = 3.88774887899923e-23
Info: cfl dt = 0.0401093030307213 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.5325e+04 | 2592 |      1 | 5.719e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2524.986477481895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0537351048465085, dt = 0.0401093030307213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (2.9%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 152.96 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0101017330071196e-19,-2.3750616350868283e-20,-3.714050036136345e-21)
    sum a = (7.155106367461937e-20,-9.289748771336825e-20,1.7223773480418645e-20)
    sum e = 7.858159957681655e-10
    sum de = 9.098986738083304e-24
Info: cfl dt = 0.04010880692932907 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    | 5.2534e+04 | 2592 |      1 | 4.934e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2926.5177629718714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0938444078772296, dt = 0.04010880692932907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (2.8%)
   patch tree reduce : 1.97 us    (1.1%)
   gen split merge   : 972.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 159.65 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (56.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.383271954977641e-20,-3.043747519898476e-20,-1.1426949186345719e-21)
    sum a = (5.886563717342375e-20,-1.4331666633856028e-19,-2.1893121319635876e-20)
    sum e = 7.858188868880836e-10
    sum de = 9.926167350636332e-24
Info: cfl dt = 0.04010831619476918 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    | 5.3867e+04 | 2592 |      1 | 4.812e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3000.741249475794 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1339532148065588, dt = 0.04010831619476918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (3.3%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 147.15 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.551534607014226e-20,-3.7196377656966754e-20,-2.805257141616063e-21)
    sum a = (3.076708883528323e-19,2.1783512568453285e-19,-8.399894235236598e-20)
    sum e = 7.858216899582526e-10
    sum de = 8.437242248040882e-23
Info: cfl dt = 0.04010783095004559 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    | 5.4542e+04 | 2592 |      1 | 4.752e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3038.3231273318024 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.174061531001328, dt = 0.001620770017721096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (3.0%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 141.83 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.620831812936869e-20,-2.9601450956489757e-20,-4.18688006266118e-21)
    sum a = (4.207880852883641e-20,-1.826283429725763e-19,7.96818065120345e-20)
    sum e = 7.857023975690774e-10
    sum de = 6.203854594147708e-23
Info: cfl dt = 0.04010781145845809 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    | 5.9188e+04 | 2592 |      1 | 4.379e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 133.2356628783623 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 63                                                      [SPH][rank=0]
Info: time since start : 107.19458730400001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000741801 s
sph::RenderFieldGetter compute custom field took :  0.0005638640000000001 s
rho_t_ampl=0.00115071, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000114323, eps_t_phi=6.28319 rad
vx_t_ampl=6.08922e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2.54s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.175682301019049, dt = 0.04010781145845809 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.41 us   (4.5%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 225.04 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.702334035017089e-20,-3.7250140778512867e-20,-8.583727652901825e-22)
    sum a = (5.1030907437970305e-20,-9.047655540351815e-20,-4.6298781911905916e-20)
    sum e = 7.858234456036515e-10
    sum de = 3.143286327701505e-23
Info: cfl dt = 0.04010733205773812 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    | 5.6567e+04 | 2592 |      1 | 4.582e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3151.0814772911117 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.215790112477507, dt = 0.04010733205773812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.4%)
   patch tree reduce : 1.68 us    (1.0%)
   gen split merge   : 951.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 156.43 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.434165433333784e-20,-3.9031820843733006e-20,-5.2416962292642064e-21)
    sum a = (-2.722831493463882e-19,4.73556563411031e-20,1.4732339948070926e-19)
    sum e = 7.858265613966346e-10
    sum de = -1.4889251025954498e-23
Info: cfl dt = 0.04010685838530991 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    | 5.8241e+04 | 2592 |      1 | 4.450e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3244.3100956570083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.255897444535245, dt = 0.04010685838530991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (3.0%)
   patch tree reduce : 1.44 us    (0.9%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 139.82 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0208810591532133e-19,-3.436901258012765e-20,4.549817051978527e-21)
    sum a = (1.893743566592994e-19,-2.740121446334743e-19,2.8946044591985366e-19)
    sum e = 7.85829084342573e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.040106390559905086 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    | 5.7374e+04 | 2592 |      1 | 4.518e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3195.9713163281 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 2.296004302920555, dt = 0.040106390559905086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.4%)
   patch tree reduce : 2.07 us    (1.3%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 146.01 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.576137045989652e-20,-5.1802179726053036e-20,1.900936594410526e-20)
    sum a = (-6.301962139557693e-20,2.2641499071774716e-19,-1.0933964535385672e-20)
    sum e = 7.858314996709122e-10
    sum de = 1.9852334701272664e-23
Info: cfl dt = 0.04010592869370934 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    | 5.9185e+04 | 2592 |      1 | 4.380e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3296.785760530658 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.33611069348046, dt = 0.04010592869370934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.5%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 148.08 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.191347367498412e-20,-3.268684820693842e-20,1.2546981368243465e-20)
    sum a = (3.9778342583023735e-19,-6.194230497720305e-20,-2.081244351644729e-19)
    sum e = 7.858338119942729e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04010547289598558 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    | 5.8403e+04 | 2592 |      1 | 4.438e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3253.2183375743357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3762166221741694, dt = 0.04010547289598558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.7%)
   patch tree reduce : 1.45 us    (0.9%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 136.08 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 591.00 ns  (56.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.672665794825793e-20,-4.095250450974143e-20,2.457989976977625e-22)
    sum a = (-1.662908240830305e-20,-1.0605569077624012e-19,-2.871129025415329e-20)
    sum e = 7.858360188841589e-10
    sum de = -2.9778502051908996e-23
Info: cfl dt = 0.040105023273235146 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    | 5.8660e+04 | 2592 |      1 | 4.419e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3267.497485677185 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.416322095070155, dt = 0.040105023273235146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.7%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 141.35 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.661208875540725e-20,-4.6089629825611777e-20,2.6920565440434e-21)
    sum a = (4.2696647954283246e-20,7.749915458607497e-20,7.786326474354598e-20)
    sum e = 7.858381180834879e-10
    sum de = -3.970466940254533e-23
Info: cfl dt = 0.04010457992918393 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    | 5.7672e+04 | 2592 |      1 | 4.494e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3212.4013729548374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.45642711834339, dt = 0.04010457992918393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (2.5%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.8%)
   LB compute        : 140.23 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.421960417176207e-20,-3.9300790500522446e-20,7.95181757275782e-21)
    sum a = (-3.044370905090042e-19,1.3980306405413544e-19,-2.1024520941465176e-20)
    sum e = 7.858401075118753e-10
    sum de = -4.218621124020441e-23
Info: cfl dt = 0.04010414296476994 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    | 5.8968e+04 | 2592 |      1 | 4.396e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3284.5381178251987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.496531698272574, dt = 0.04010414296476994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.8%)
   patch tree reduce : 1.45 us    (1.0%)
   gen split merge   : 1.06 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 135.20 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (56.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.383271954977641e-20,-3.244550468137326e-20,5.125720626641312e-21)
    sum a = (-6.227032677322651e-20,-2.5604899737534506e-19,3.237917881394462e-20)
    sum e = 7.858419852668193e-10
    sum de = 0
Info: cfl dt = 0.040103712478131714 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    | 5.6923e+04 | 2592 |      1 | 4.554e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3170.6348435652703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.536635841237344, dt = 0.0016601766182127164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.7%)
   patch tree reduce : 1.20 us    (0.7%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 145.51 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.875854894929817e-20,-4.0808417290010394e-20,6.250330587146467e-21)
    sum a = (2.652765873514273e-20,-1.3606342045066e-19,-2.20350402437025e-20)
    sum e = 7.85706101948513e-10
    sum de = 4.1359030627651384e-24
Info: cfl dt = 0.040103694797961664 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    | 5.9764e+04 | 2592 |      1 | 4.337e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 137.80284349908803 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 73                                                      [SPH][rank=0]
Info: time since start : 107.82799011 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00068119 s
sph::RenderFieldGetter compute custom field took :  0.000538295 s
rho_t_ampl=0.00127352, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000147995, eps_t_phi=6.28319 rad
vx_t_ampl=4.92732e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 2.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.538296017855557, dt = 0.040103694797961664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.80 us   (4.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 245.92 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.672099339729266e-20,-4.616573006069424e-20,5.321475451260002e-21)
    sum a = (-3.022154976813337e-20,4.298009822260659e-20,7.93750598588624e-20)
    sum e = 7.858431432126905e-10
    sum de = -6.617444900424222e-24
Info: cfl dt = 0.04010327115614574 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    | 5.3901e+04 | 2592 |      1 | 4.809e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3002.28979976102 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.5783997126535185, dt = 0.04010327115614574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (3.0%)
   patch tree reduce : 1.68 us    (0.9%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.6%)
   LB compute        : 175.39 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 712.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.931066077629321e-20,-4.085021593465083e-20,1.0538134851789191e-20)
    sum a = (1.696823681631429e-19,-4.201842129775883e-21,-3.1858573579867414e-21)
    sum e = 7.858450890198375e-10
    sum de = -1.613002194478404e-23
Info: cfl dt = 0.04010285418690318 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    | 5.5162e+04 | 2592 |      1 | 4.699e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3072.480713054574 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6185029838096643, dt = 0.04010285418690318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (3.1%)
   patch tree reduce : 1.86 us    (1.2%)
   gen split merge   : 1.19 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 141.80 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.996419627644858e-20,-4.1964709525899007e-20,8.754891453675839e-21)
    sum a = (-4.544931977744424e-19,1.6905482364698717e-19,-1.3463905838100033e-19)
    sum e = 7.858466265938099e-10
    sum de = -8.68539643180679e-24
Info: cfl dt = 0.04010244397636518 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    | 5.6362e+04 | 2592 |      1 | 4.599e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3139.276088985042 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6586058379965674, dt = 0.04010244397636518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (3.3%)
   patch tree reduce : 1.84 us    (1.2%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 137.05 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1048809299746018e-19,-3.171171766428256e-20,7.197118814096452e-22)
    sum a = (3.273891678883695e-19,1.1493980270072545e-19,8.972827980165124e-20)
    sum e = 7.858480372548853e-10
    sum de = -4.5908523996693036e-23
Info: cfl dt = 0.040102040611497865 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    | 5.5571e+04 | 2592 |      1 | 4.664e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3095.187007706958 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6987082819729324, dt = 0.040102040611497865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (3.2%)
   patch tree reduce : 1.93 us    (1.2%)
   gen split merge   : 1.17 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.7%)
   LB compute        : 141.52 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.042428946561111e-20,-2.8185842804834315e-20,8.816838306811476e-21)
    sum a = (3.4726519366019104e-19,1.2792773020385817e-19,-3.121018185580697e-20)
    sum e = 7.858493293565786e-10
    sum de = -2.5229008682867344e-23
Info: cfl dt = 0.04010164417618032 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    | 5.6210e+04 | 2592 |      1 | 4.611e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3130.750027847908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7388103225844302, dt = 0.04010164417618032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.6%)
   patch tree reduce : 1.92 us    (1.1%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 149.78 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.55435611761257e-20,-2.2792790652492302e-20,5.1403191489171885e-21)
    sum a = (-2.9432818586711877e-20,8.876625140224174e-20,2.2083539320357347e-20)
    sum e = 7.858505020379639e-10
    sum de = 3.226004388956808e-23
Info: cfl dt = 0.04010125475144319 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    | 5.5947e+04 | 2592 |      1 | 4.633e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3116.046945700924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7789119667606106, dt = 0.04010125475144319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (3.0%)
   patch tree reduce : 1.96 us    (1.2%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (1.0%)
   LB compute        : 140.66 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.456138768371138e-20,-2.0022166979004163e-20,7.09447970673141e-21)
    sum a = (-2.392090218054471e-19,-1.237989586776736e-20,1.3832895491988858e-19)
    sum e = 7.858515546288281e-10
    sum de = 3.143286327701505e-23
Info: cfl dt = 0.04010087241546209 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    | 5.6760e+04 | 2592 |      1 | 4.567e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3161.3389779847416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8190132215120536, dt = 0.04010087241546209 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (3.0%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 137.31 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.910033246124749e-20,-2.25473391520239e-20,1.497238499166173e-20)
    sum a = (2.356860225284311e-19,-1.2232383623960753e-19,9.93549772787934e-20)
    sum e = 7.858524866285307e-10
    sum de = 1.3648480107124957e-23
Info: cfl dt = 0.04010049724355388 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    | 4.4438e+04 | 2592 |      1 | 5.833e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2475.0072854026866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8591140939275155, dt = 0.04010049724355388 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (3.4%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (1.0%)
   LB compute        : 141.86 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.001303787084746e-20,-2.965567622521248e-20,1.81751237317092e-20)
    sum a = (1.568917775044244e-19,-3.2243135567702547e-20,1.4501795319200746e-19)
    sum e = 7.85853297703873e-10
    sum de = 1.819797347616661e-23
Info: cfl dt = 0.04010012930817341 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    | 5.0762e+04 | 2592 |      1 | 5.106e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2827.177338272841 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.899214591171069, dt = 0.0016951435209957566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.9%)
   patch tree reduce : 1.65 us    (1.1%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 136.44 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.042054898124856e-20,-2.790701400827711e-20,1.933650399535916e-20)
    sum a = (9.527872671571581e-20,1.7313568591586272e-19,7.493266508396797e-20)
    sum e = 7.857081338568077e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.04010011391442888 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    | 5.9062e+04 | 2592 |      1 | 4.389e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 139.05326632631784 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 83                                                      [SPH][rank=0]
Info: time since start : 108.50374672100001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000782502 s
sph::RenderFieldGetter compute custom field took :  0.000653569 s
rho_t_ampl=0.00136978, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000183104, eps_t_phi=6.28319 rad
vx_t_ampl=3.71099e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.26s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.900909734692065, dt = 0.04010011391442888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.10 us   (4.7%)
   patch tree reduce : 2.07 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 211.54 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.762055328720228e-20,-2.0788920494693335e-20,2.2281910090112894e-20)
    sum a = (4.9177389161629807e-20,4.23658019255138e-20,-1.0321050179203248e-20)
    sum e = 7.858537727836603e-10
    sum de = 2.0679515313825692e-23
Info: cfl dt = 0.04009975358648867 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    | 5.7335e+04 | 2592 |      1 | 4.521e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3193.2499826954027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9410098486064937, dt = 0.04009975358648867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.7%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 146.36 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.546468805798354e-20,-2.1713728344784545e-20,2.015869667433322e-20)
    sum a = (4.284782143072236e-19,9.158771126515744e-20,-1.101204008924313e-19)
    sum e = 7.858544139435875e-10
    sum de = -1.406207041340147e-23
Info: cfl dt = 0.040099400644126426 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    | 5.6476e+04 | 2592 |      1 | 4.590e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3145.3707730194733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9811096021929826, dt = 0.040099400644126426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.9%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 991.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.9%)
   LB compute        : 130.62 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.086942071732346e-20,-1.7049430940276766e-20,1.37419699140085e-20)
    sum a = (-2.1349638529110658e-19,5.3817500863894776e-20,-1.2474126062986103e-19)
    sum e = 7.858548677209554e-10
    sum de = -1.2821299494571929e-23
Info: cfl dt = 0.04009905514080914 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    | 5.6847e+04 | 2592 |      1 | 4.560e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3166.00529559047 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.021209002837109, dt = 0.04009905514080914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.3%)
   patch tree reduce : 1.64 us    (0.9%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.7%)
   LB compute        : 160.07 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.257267372610475e-20,-1.5654157264392346e-20,8.446819369492289e-21)
    sum a = (-4.339336049787223e-20,9.361248074527663e-20,1.1663381810346277e-19)
    sum e = 7.858551899088066e-10
    sum de = -2.0265925007549178e-23
Info: cfl dt = 0.04009871713771011 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    | 5.7495e+04 | 2592 |      1 | 4.508e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3202.0510668844704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.061308057977918, dt = 0.04009871713771011 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (2.8%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 134.56 us  (82.4%)
   LB move op cnt    : 0
   LB apply          : 14.15 us   (8.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.091633824511963e-20,-1.1101185979762288e-20,1.7963142146187558e-20)
    sum a = (7.736138337775767e-20,2.0031348302912897e-19,1.308315120288835e-19)
    sum e = 7.858553920103234e-10
    sum de = -3.7223127564886245e-24
Info: cfl dt = 0.04009838669283959 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7543e+04 | 2592 |      1 | 4.504e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3204.707334120706 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.101406775115628, dt = 0.04009838669283959 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (3.3%)
   patch tree reduce : 1.77 us    (1.2%)
   gen split merge   : 912.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 134.21 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.552667517207279e-20,-9.259375431896015e-22,2.3493929363488073e-20)
    sum a = (1.9790579893834183e-19,-2.0382687991480865e-19,7.298390167971385e-20)
    sum e = 7.858554746138845e-10
    sum de = 2.8537731133079455e-23
Info: cfl dt = 0.040098063861349946 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7186e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3184.812538778352 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1415051618084675, dt = 0.040098063861349946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (3.2%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 802.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 136.20 us  (82.1%)
   LB move op cnt    : 0
   LB apply          : 14.70 us   (8.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.482622214412126e-20,-1.7202555704794924e-20,2.5260644589375314e-20)
    sum a = (-1.180467668194161e-20,-2.5637871371101613e-21,2.4026614729324136e-20)
    sum e = 7.858554385001477e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04009774869553707 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5277e+04 | 2592 |      1 | 5.725e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2521.5338559054053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1816032256698175, dt = 0.04009774869553707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (3.1%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 1.07 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 143.71 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0176448658097025e-20,-1.326886163682783e-20,2.524251153948483e-20)
    sum a = (-8.02402521899461e-20,-3.268818329878198e-20,8.653670399220392e-20)
    sum e = 7.85855284596706e-10
    sum de = 2.1093105620102206e-23
Info: cfl dt = 0.040097441244844996 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5710e+04 | 2592 |      1 | 4.653e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3102.5869045842805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2217009743653544, dt = 0.040097441244844996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (3.3%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 1.00 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 133.88 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.540836549485957e-20,-1.5183383340481397e-20,2.996566886843284e-20)
    sum a = (2.1187948636919251e-19,-1.523186771427685e-19,-2.363116305992034e-20)
    sum e = 7.858550139731547e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04009714155587116 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5245e+04 | 2592 |      1 | 4.692e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3076.667786881121 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2617984156101993, dt = 0.0017250359183735853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (3.1%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 139.32 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8651568374015484e-20,-1.784637807150473e-20,2.771617947526534e-20)
    sum a = (-1.851283537993137e-19,2.909308906221418e-20,-3.2944846865320915e-20)
    sum e = 7.857083955293061e-10
    sum de = 1.8611563782443123e-23
Info: cfl dt = 0.04009712883685551 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8851e+04 | 2592 |      1 | 4.404e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 141.00017689693013 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 93                                                      [SPH][rank=0]
Info: time since start : 109.15998070600001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00084206 s
sph::RenderFieldGetter compute custom field took :  0.000670804 s
rho_t_ampl=0.00143866, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000218629, eps_t_phi=6.28319 rad
vx_t_ampl=2.47464e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.63s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.263523451528573, dt = 0.04009712883685551 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.54 us   (5.3%)
   patch tree reduce : 2.11 us    (1.0%)
   gen split merge   : 1.03 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 192.10 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.625625151488767e-20,-1.6525972238231803e-20,2.6387152486452037e-20)
    sum a = (7.47454249593764e-20,1.9645208931945885e-20,-1.2400118330722204e-20)
    sum e = 7.858548011394779e-10
    sum de = 1.819797347616661e-23
Info: cfl dt = 0.04009683727512656 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6635e+04 | 2592 |      1 | 4.577e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3154.050863098247 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3036205803654286, dt = 0.04009683727512656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (2.9%)
   patch tree reduce : 2.08 us    (1.1%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.6%)
   LB compute        : 164.78 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.857926801571851e-20,-1.5924359313652756e-20,2.630183927304001e-20)
    sum a = (4.52863153332838e-20,1.635199950107972e-20,8.209840198702016e-20)
    sum e = 7.858541528583278e-10
    sum de = -1.0960143116327617e-23
Info: cfl dt = 0.04009655357755376 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6829e+04 | 2592 |      1 | 4.561e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3164.8012618471116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3437174176405553, dt = 0.04009655357755376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (3.0%)
   patch tree reduce : 1.67 us    (1.1%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 138.70 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.654828522355818e-20,-1.5342259269864085e-20,3.148824814289634e-20)
    sum a = (9.669844284227449e-20,-2.3946823502184134e-20,4.536572887712197e-20)
    sum e = 7.858535469772105e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.040096277765711556 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7803e+04 | 2592 |      1 | 4.484e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3219.035906846829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.383813971218109, dt = 0.040096277765711556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (3.3%)
   patch tree reduce : 1.63 us    (1.1%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.6%)
   LB compute        : 131.48 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 601.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.221683648558517e-20,-1.7107456085784987e-20,3.2570818211300516e-20)
    sum a = (-4.1421532544318504e-20,8.875793275306268e-22,-8.103087647285853e-21)
    sum e = 7.858528181000647e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.04009600987510469 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8265e+04 | 2592 |      1 | 4.449e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3244.7232152536826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4239102489838205, dt = 0.04009600987510469 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (3.0%)
   patch tree reduce : 1.87 us    (1.2%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 135.19 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6778331818139446e-20,-1.657567873456097e-20,3.117396646939582e-20)
    sum a = (3.0806525394354305e-19,-8.047815528652981e-20,1.06803794377763e-19)
    sum e = 7.858519800120621e-10
    sum de = 1.468245587281624e-23
Info: cfl dt = 0.04009574993808539 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8253e+04 | 2592 |      1 | 4.450e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3244.0340118624636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4640062588589253, dt = 0.04009574993808539 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (3.1%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 155.45 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7053479522757056e-20,-2.143253746265798e-20,3.775999843940613e-20)
    sum a = (2.0204663764080463e-20,-6.373749000991758e-20,1.0970219678512721e-19)
    sum e = 7.85851034505265e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.040095497984213066 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6849e+04 | 2592 |      1 | 4.559e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3165.8221081523448 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5041020087970107, dt = 0.040095497984213066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (2.8%)
   patch tree reduce : 1.81 us    (1.0%)
   gen split merge   : 1.22 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.9%)
   LB compute        : 158.47 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1812157650666703e-20,-2.365248710036721e-20,4.221666945853708e-20)
    sum a = (4.58515726799692e-20,-3.6550398603432745e-20,3.52485794569298e-20)
    sum e = 7.858499835525211e-10
    sum de = 6.4106497472859645e-24
Info: cfl dt = 0.04009525404026271 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8633e+04 | 2592 |      1 | 4.421e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3265.1913763383004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5441975067812237, dt = 0.04009525404026271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (3.1%)
   patch tree reduce : 1.82 us    (1.2%)
   gen split merge   : 1.01 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 134.76 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.978117485850637e-20,-2.4573700472418088e-20,4.2137342774672406e-20)
    sum a = (3.1471688690686428e-19,4.3240235733354067e-20,1.4610188603643712e-19)
    sum e = 7.858488292375472e-10
    sum de = -9.512577044359818e-24
Info: cfl dt = 0.040095018130236984 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7778e+04 | 2592 |      1 | 4.486e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3217.5389949302544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5842927608214863, dt = 0.040095018130236984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (3.2%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 137.91 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2080732595439132e-20,-2.1242954420873596e-20,5.0217646288421884e-20)
    sum a = (-2.861385271000257e-19,4.8894246991424204e-20,-8.23155840689655e-20)
    sum e = 7.858475737516462e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.040094790275381154 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8922e+04 | 2592 |      1 | 4.399e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3281.23707707685 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.624387778951723, dt = 0.0017493894133577825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (2.7%)
   patch tree reduce : 1.52 us    (0.8%)
   gen split merge   : 1.13 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 163.90 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.68 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4286347627936666e-20,-2.10367340807311e-20,4.549444297452516e-20)
    sum a = (-1.1782329298468001e-19,-1.0305866633589734e-19,5.040541624975206e-20)
    sum e = 7.857069812065953e-10
    sum de = -8.68539643180679e-24
Info: cfl dt = 0.04009478051648153 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7594e+04 | 2592 |      1 | 4.500e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 139.93596535184975 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 103                                                     [SPH][rank=0]
Info: time since start : 109.80533688700001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007582750000000001 s
sph::RenderFieldGetter compute custom field took :  0.000632497 s
rho_t_ampl=0.00148009, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000253604, eps_t_phi=6.28319 rad
vx_t_ampl=1.251e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 3.99s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.626137168365081, dt = 0.04009478051648153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.91 us   (5.7%)
   patch tree reduce : 1.98 us    (0.9%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.7%)
   LB compute        : 182.89 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8831411060877995e-20,-2.5303482213978127e-20,4.763152743234042e-20)
    sum a = (-3.0163709481495793e-19,-2.444992205361493e-19,2.6505683320018186e-20)
    sum e = 7.858467387438902e-10
    sum de = -6.72084247699335e-24
Info: cfl dt = 0.04009456106776843 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0902e+04 | 2592 |      1 | 4.256e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3391.4634441376797 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6662319488815625, dt = 0.04009456106776843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.6%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 149.82 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4619180208998124e-20,-3.79406400100607e-20,4.821513389775119e-20)
    sum a = (-9.868341631551857e-20,1.5078424581703694e-19,4.41405401862635e-20)
    sum e = 7.85844945665291e-10
    sum de = 1.2407709188295415e-23
Info: cfl dt = 0.04009434973046227 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0727e+04 | 2592 |      1 | 4.268e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3381.7071738739337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.706326509949331, dt = 0.04009434973046227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (3.1%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.6%)
   LB compute        : 134.54 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.414922788006782e-20,-2.3977017117722925e-20,5.0338451076042056e-20)
    sum a = (-1.106064026746734e-19,7.340411980378325e-20,8.128573537170187e-20)
    sum e = 7.85843408993988e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.040094146495770824 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9676e+04 | 2592 |      1 | 4.343e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3323.165025156427 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.746420859679793, dt = 0.040094146495770824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.6%)
   patch tree reduce : 1.44 us    (0.9%)
   gen split merge   : 1.09 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 150.88 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.905250672457141e-20,-2.2574554485757843e-20,5.434218948134038e-20)
    sum a = (-2.1849168277344267e-19,2.1268526564646245e-21,-1.3077563444144455e-22)
    sum e = 7.85841768717359e-10
    sum de = 3.2053248736429822e-24
Info: cfl dt = 0.040093951374305895 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0202e+04 | 2592 |      1 | 4.306e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3352.4027500956545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.786515006175564, dt = 0.040093951374305895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (2.1%)
   patch tree reduce : 972.00 ns  (0.6%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 152.61 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.024263036098877e-20,-2.392607822892279e-20,5.2704783409687963e-20)
    sum a = (2.554174475836587e-19,1.0255369352091695e-19,8.678368642216827e-20)
    sum e = 7.858400398774692e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.04009376437361685 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0106e+04 | 2592 |      1 | 4.312e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3347.0393803597426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.82660895754987, dt = 0.04009376437361685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (2.7%)
   patch tree reduce : 1.68 us    (1.0%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.9%)
   LB compute        : 148.64 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (48.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0320595270251007e-20,-1.779615807831266e-20,5.792664019227749e-20)
    sum a = (-1.9108327421904594e-19,-1.3962390499866803e-19,-4.0104257581895395e-20)
    sum e = 7.858382251400998e-10
    sum de = 1.34416849539867e-24
Info: cfl dt = 0.04009358549859187 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0804e+04 | 2592 |      1 | 4.263e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3385.928522315537 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.866702721923487, dt = 0.04009358549859187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.6%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (1.0%)
   LB compute        : 137.04 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.683629757122472e-20,-2.8253418991992557e-20,5.377500904768526e-20)
    sum a = (-4.250603791877305e-19,-8.322644184648159e-20,5.85616656695787e-20)
    sum e = 7.85836327326168e-10
    sum de = -2.3264454728053903e-25
Info: cfl dt = 0.040093414751473065 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8356e+04 | 2592 |      1 | 4.442e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3249.6050430639466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.906796307422079, dt = 0.040093414751473065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (2.2%)
   patch tree reduce : 1.43 us    (1.0%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 133.35 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.854694493483184e-20,-3.0456936730088844e-20,5.810088151275539e-20)
    sum a = (3.4675251839226705e-19,-1.300937626709624e-19,6.657153421556808e-20)
    sum e = 7.858343493142757e-10
    sum de = 5.428372769879244e-25
Info: cfl dt = 0.04009325213187539 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1332e+04 | 2592 |      1 | 4.226e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3415.288313089206 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9468897221735517, dt = 0.04009325213187539 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (2.0%)
   patch tree reduce : 1.36 us    (0.9%)
   gen split merge   : 862.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 136.59 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9092354081132804e-20,-3.661396951506034e-20,6.093052230972734e-20)
    sum a = (1.9613115378014348e-20,1.363536488775737e-19,4.8279139763292163e-20)
    sum e = 7.85832294067611e-10
    sum de = 2.1325750167382745e-25
Info: cfl dt = 0.04009309763680629 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1266e+04 | 2592 |      1 | 4.231e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3411.5967786504034 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9869829743054273, dt = 0.001767910896161684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.5%)
   patch tree reduce : 1.31 us    (0.9%)
   gen split merge   : 802.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.9%)
   LB compute        : 132.58 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.56708650911764e-20,-3.1029177634109743e-20,6.064917473553394e-20)
    sum a = (-2.5713951066309563e-19,1.681373588020355e-20,-5.737063037633584e-20)
    sum e = 7.857041439677647e-10
    sum de = 1.3247814497919584e-25
Info: cfl dt = 0.04009309101014363 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0380e+04 | 2592 |      1 | 4.293e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 148.25778368558665 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 113                                                     [SPH][rank=0]
Info: time since start : 110.41910932500001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.00077517 s
sph::RenderFieldGetter compute custom field took :  0.0006304240000000001 s
rho_t_ampl=0.0014947, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000287139, eps_t_phi=6.28319 rad
vx_t_ampl=7.03885e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4.35s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.988750885201589, dt = 0.04009309101014363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.21 us   (5.8%)
   patch tree reduce : 2.14 us    (1.0%)
   gen split merge   : 1.02 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 182.37 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.626800255031153e-20,-3.045899071754046e-20,5.825561914064083e-20)
    sum a = (3.417835119493117e-19,3.244033890293243e-19,-5.3608142382344806e-20)
    sum e = 7.858309582057155e-10
    sum de = 3.4896682092080855e-25
Info: cfl dt = 0.04009294496737868 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0055e+04 | 2592 |      1 | 4.316e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3344.1716582407425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.028843976211733, dt = 0.04009294496737868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (2.3%)
   patch tree reduce : 1.46 us    (0.9%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 129.16 us  (82.8%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0623763818109897e-20,-1.1288509635349892e-20,5.618173572508564e-20)
    sum a = (-1.495828685565853e-19,-5.638246904378962e-21,-3.606762369579939e-20)
    sum e = 7.858282637031316e-10
    sum de = 1.550963648536927e-25
Info: cfl dt = 0.04009280706072271 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1406e+04 | 2592 |      1 | 4.221e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3419.3890086284937 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0689369211791115, dt = 0.04009280706072271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (2.2%)
   patch tree reduce : 1.11 us    (0.8%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 134.21 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.63400542029137e-20,-1.812685005802323e-20,5.508730897231239e-20)
    sum a = (-2.6557893430430554e-19,1.808873318588982e-19,-6.580170505152631e-20)
    sum e = 7.858260038242972e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040092677253247916 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0524e+04 | 2592 |      1 | 4.283e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3370.24381463205 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.109029728239834, dt = 0.040092677253247916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.4%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 1.14 us    (0.8%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 135.01 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.922266349946468e-20,-7.136579400648338e-21,5.185308105550816e-20)
    sum a = (-2.0257245842841896e-20,-1.4707027705670671e-19,-3.5792240888090364e-20)
    sum e = 7.85823667290942e-10
    sum de = 1.550963648536927e-25
Info: cfl dt = 0.04009255553202985 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0811e+04 | 2592 |      1 | 4.262e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3386.210615717188 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.149122405493082, dt = 0.04009255553202985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (2.1%)
   patch tree reduce : 1.12 us    (0.8%)
   gen split merge   : 651.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (1.0%)
   LB compute        : 128.92 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.514426601553106e-20,-1.9614142371740156e-20,5.101965853070808e-20)
    sum a = (-8.874540342960781e-20,8.460189454345789e-20,3.0652795851004915e-20)
    sum e = 7.858212693554657e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.04009244188124205 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0231e+04 | 2592 |      1 | 4.303e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3353.9345642727803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.189214961025112, dt = 0.04009244188124205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (2.1%)
   patch tree reduce : 671.00 ns  (0.5%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.7%)
   LB compute        : 131.41 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.019378876658989e-20,-1.1575246283595829e-20,5.3580579629509564e-20)
    sum a = (2.3784188775764987e-19,-6.375356246172649e-20,-8.139229206760599e-20)
    sum e = 7.858188131816121e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.0400923362825868 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1371e+04 | 2592 |      1 | 4.223e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3417.3741590439136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.229307402906354, dt = 0.0400923362825868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (1.9%)
   patch tree reduce : 931.00 ns  (0.6%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 141.71 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.46 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.4044517826984906e-20,-1.7105196699588208e-20,4.807129189739529e-20)
    sum a = (5.685437266079896e-20,-8.592158148112275e-20,2.1821802793469435e-19)
    sum e = 7.85816302056374e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.040092238715315684 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1733e+04 | 2592 |      1 | 4.199e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3437.5256548977773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.269399739188941, dt = 0.040092238715315684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (1.9%)
   patch tree reduce : 1.12 us    (0.8%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.7%)
   LB compute        : 129.70 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.45 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.557925725083422e-20,-2.0992573350521306e-20,6.282618001697439e-20)
    sum a = (-3.806942502327718e-20,9.88016746430455e-20,-7.798844567023243e-20)
    sum e = 7.858137392948097e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.040092149156254524 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1624e+04 | 2592 |      1 | 4.206e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3431.4432683900363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.309491977904257, dt = 0.040092149156254524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (1.7%)
   patch tree reduce : 681.00 ns  (0.4%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.6%)
   LB compute        : 147.67 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 1.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.886563717342375e-20,-1.3333459542181231e-20,5.376166529630554e-20)
    sum a = (-2.717178919997028e-20,-1.5616630913651277e-19,-7.226066253405419e-20)
    sum e = 7.858111282335301e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.04009206757982878 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9059e+04 | 2592 |      1 | 4.389e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3288.6338558358075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.349584127060512, dt = 0.001780474977586266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (2.4%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 156.72 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (56.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.859944039969401e-20,-1.8717576849108698e-20,5.37478265627123e-20)
    sum a = (7.857077118927062e-20,-1.0422240427629806e-20,-1.3230195170261508e-19)
    sum e = 7.857002507113821e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.04009206414051734 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1102e+04 | 2592 |      1 | 5.072e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.37019126472669 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 123                                                     [SPH][rank=0]
Info: time since start : 111.03167776000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000848009 s
sph::RenderFieldGetter compute custom field took :  0.0007039840000000001 s
rho_t_ampl=0.00148375, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000318435, eps_t_phi=7.01661e-14 rad
vx_t_ampl=-1.03988e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 4.71s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.351364602038098, dt = 0.04009206414051734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.25 us   (4.8%)
   patch tree reduce : 2.05 us    (0.9%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 207.33 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.547737947323394e-20,-1.9002259509903016e-20,4.839011722263735e-20)
    sum a = (2.928558876617987e-19,1.1986762669527588e-20,1.7447929433982748e-19)
    sum e = 7.858094494399876e-10
    sum de = 9.719372197498075e-24
Info: cfl dt = 0.04009199084344533 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7842e+04 | 2592 |      1 | 4.481e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3220.8191369402134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.391456666178615, dt = 0.04009199084344533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (2.7%)
   patch tree reduce : 1.79 us    (1.1%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 152.28 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9232803515873875e-20,-1.8078581352910195e-20,6.153508619039937e-20)
    sum a = (1.451528284209346e-19,-2.5323051579423424e-19,6.35032485054844e-20)
    sum e = 7.858061598520689e-10
    sum de = 3.5155176033503676e-24
Info: cfl dt = 0.04009192549854111 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7894e+04 | 2592 |      1 | 4.477e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3223.719068643379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.43154865702206, dt = 0.04009192549854111 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (2.7%)
   patch tree reduce : 2.07 us    (1.2%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.9%)
   LB compute        : 158.93 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5893841514522903e-20,-3.353791790751653e-20,6.185642839168759e-20)
    sum a = (3.654454473919563e-20,1.6050160910095757e-19,1.0644093690274285e-19)
    sum e = 7.858034333399934e-10
    sum de = 1.1580528575742387e-23
Info: cfl dt = 0.040091868043512 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7985e+04 | 2592 |      1 | 4.470e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3228.815185153067 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.471640582520601, dt = 0.040091868043512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.2%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 154.89 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.739243075922373e-20,-1.8810622480667016e-20,6.698457169056664e-20)
    sum a = (6.366375186040447e-20,7.410822670219806e-20,4.041933266914368e-20)
    sum e = 7.858006611842189e-10
    sum de = 5.583469134732937e-24
Info: cfl dt = 0.040091818443731754 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8641e+04 | 2592 |      1 | 4.420e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3265.339921278921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.511732450564113, dt = 0.040091818443731754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (3.0%)
   patch tree reduce : 1.77 us    (1.1%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 138.52 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.448727090765458e-20,-1.7579873199657233e-20,6.728159151507791e-20)
    sum a = (-3.3928586320814366e-20,-1.515698446675947e-19,1.3657687247797062e-19)
    sum e = 7.857978578420461e-10
    sum de = -5.583469134732937e-24
Info: cfl dt = 0.0400917766619299 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8555e+04 | 2592 |      1 | 4.427e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3260.5456247606767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.551824269007845, dt = 0.0400917766619299 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.49 us    (3.0%)
   patch tree reduce : 1.60 us    (1.1%)
   gen split merge   : 841.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.9%)
   LB compute        : 133.08 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.723468452293944e-20,-2.817968084247946e-20,7.468476629765891e-20)
    sum a = (-3.3924642664907255e-19,-4.010328339786978e-20,2.889256235781774e-20)
    sum e = 7.857950266007249e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.04009174265859809 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8512e+04 | 2592 |      1 | 4.430e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3258.1030159311535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.591916045669775, dt = 0.04009174265859809 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.8%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 147.49 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (73.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.779427731865957e-20,-2.755136608102937e-20,7.368449181678438e-20)
    sum a = (-2.3103250855804433e-19,6.857611959938148e-20,6.476526612524583e-20)
    sum e = 7.857921708333089e-10
    sum de = -1.4268865566539727e-23
Info: cfl dt = 0.040091716392022296 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8156e+04 | 2592 |      1 | 4.457e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3238.308435694539 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.632007788328373, dt = 0.040091716392022296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (3.3%)
   patch tree reduce : 1.20 us    (0.8%)
   gen split merge   : 1.12 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 133.06 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.447220132136151e-20,-2.261994760843861e-20,7.700014210228787e-20)
    sum a = (-2.6958831780986476e-19,-2.4145100045857496e-19,5.084821140976895e-20)
    sum e = 7.857892938981645e-10
    sum de = 9.512577044359818e-24
Info: cfl dt = 0.040091697818312594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8696e+04 | 2592 |      1 | 4.416e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3268.386707736623 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.6720995047203955, dt = 0.040091697818312594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (3.3%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 137.60 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.610598624732846e-20,-3.851924827518162e-20,7.87597539233972e-20)
    sum a = (3.820088022018076e-20,9.313092338724468e-20,5.3440162546101386e-20)
    sum e = 7.857863991371589e-10
    sum de = 1.1994118882018901e-23
Info: cfl dt = 0.0400916868914347 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4209e+04 | 2592 |      1 | 4.782e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3018.487255866472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.712191202538708, dt = 0.0017871163358966768 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (2.6%)
   patch tree reduce : 2.23 us    (1.3%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 158.08 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.973698195734994e-20,-3.164373067963399e-20,7.890721557174303e-20)
    sum a = (-3.0488403817847636e-19,3.744455069080855e-20,-2.6395752761054563e-20)
    sum e = 7.856957327785192e-10
    sum de = 7.651420666115506e-24
Info: cfl dt = 0.0400916865803467 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9145e+04 | 2592 |      1 | 4.382e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 146.8032365078437 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 133                                                     [SPH][rank=0]
Info: time since start : 111.659507766 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000806677 s
sph::RenderFieldGetter compute custom field took :  0.000696202 s
rho_t_ampl=0.00144907, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000346805, eps_t_phi=3.02425e-13 rad
vx_t_ampl=-2.05603e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.08s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.713978318874605, dt = 0.0400916865803467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.60 us   (4.7%)
   patch tree reduce : 2.30 us    (0.9%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 221.35 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 us    (76.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.227780774195161e-20,-3.0194847931262327e-20,7.77776272907702e-20)
    sum a = (5.482470442060766e-19,-1.5294118938966776e-19,9.344009239352239e-22)
    sum e = 7.857845521984444e-10
    sum de = -1.0339757656912846e-23
Info: cfl dt = 0.04009168355931969 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7205e+04 | 2592 |      1 | 4.531e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3185.3532285115416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.754070005454952, dt = 0.04009168355931969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (2.7%)
   patch tree reduce : 1.87 us    (1.1%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 157.89 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 812.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.270322071412842e-20,-4.01435415519215e-20,7.836294497479679e-20)
    sum a = (-8.097640129260616e-20,8.09056414248979e-20,3.934734169648575e-20)
    sum e = 7.85780998620891e-10
    sum de = 3.9291079096268815e-24
Info: cfl dt = 0.040091688116102905 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7269e+04 | 2592 |      1 | 4.526e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3188.9293890188164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.794161689014271, dt = 0.040091688116102905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 15.35 us   (9.5%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 133.11 us  (82.3%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.930601208305075e-20,-3.22030314627097e-20,8.071046605931094e-20)
    sum a = (1.3616129295272962e-19,-2.783685493189845e-19,-2.1119225668905652e-19)
    sum e = 7.857780794106538e-10
    sum de = 1.0339757656912846e-23
Info: cfl dt = 0.04009170016625866 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9425e+04 | 2592 |      1 | 4.362e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3308.9670303204994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.834253377130374, dt = 0.04009170016625866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.6%)
   patch tree reduce : 1.72 us    (1.1%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.9%)
   LB compute        : 134.32 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.854640421649262e-20,-5.056711707139486e-20,6.722113170709585e-20)
    sum a = (2.1031516952603991e-19,-1.1603329427028083e-19,1.7492670938428591e-19)
    sum e = 7.857751460696092e-10
    sum de = 1.613002194478404e-23
Info: cfl dt = 0.040091719655803854 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9411e+04 | 2592 |      1 | 4.363e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3308.1704452551467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.874345077296633, dt = 0.040091719655803854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.8%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 691.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.9%)
   LB compute        : 139.29 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.895017484253117e-20,-5.1967114918418e-20,8.197432720820193e-20)
    sum a = (8.64580830034855e-20,-3.8611420962073e-20,-1.0129080067177565e-19)
    sum e = 7.857722114518343e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.040091746528354566 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7529e+04 | 2592 |      1 | 4.506e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3203.3598537552384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.914436796952437, dt = 0.040091746528354566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.5%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 159.22 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9383976992312994e-20,-5.196197994978895e-20,7.237638461340771e-20)
    sum a = (6.258581924579511e-20,-3.458817304121534e-20,1.516729835932463e-19)
    sum e = 7.857692786259197e-10
    sum de = 1.075334796318936e-23
Info: cfl dt = 0.040091780725578285 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4144e+04 | 2592 |      1 | 4.787e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3014.9066711852875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.954528543480791, dt = 0.040091780725578285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.7%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 144.03 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.688632825114495e-20,-5.327180774768604e-20,8.352810457341906e-20)
    sum a = (-6.152694763473677e-19,-3.007961923522653e-20,-5.905365302838898e-20)
    sum e = 7.857663507068153e-10
    sum de = -1.6543612251060553e-23
Info: cfl dt = 0.04009182218722254 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6543e+04 | 2592 |      1 | 4.584e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3148.5043973044317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.99462032420637, dt = 0.04009182218722254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (3.1%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (1.0%)
   LB compute        : 139.64 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.481115255782818e-20,-5.43799339778342e-20,7.693633296247123e-20)
    sum a = (-2.0664756953243e-19,-3.960497577216988e-19,-2.6118372009243362e-20)
    sum e = 7.857634307622567e-10
    sum de = 1.4889251025954498e-23
Info: cfl dt = 0.04009187085114867 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8196e+04 | 2592 |      1 | 4.454e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3240.5276984338666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.034712146393592, dt = 0.04009187085114867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.5%)
   patch tree reduce : 1.60 us    (1.1%)
   gen split merge   : 782.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.9%)
   LB compute        : 131.40 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.527124574699072e-20,-7.760108371336154e-20,7.654941628018992e-20)
    sum a = (-4.909062873167344e-19,-1.1803356995003947e-19,-7.152862063687374e-20)
    sum e = 7.857605218095089e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04009192665336564 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8827e+04 | 2592 |      1 | 4.406e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3275.6625923605434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.074804017244741, dt = 0.001788018466372776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (2.4%)
   patch tree reduce : 1.36 us    (0.9%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 137.23 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.151536759991083e-20,-7.22469546232277e-20,7.55112308739623e-20)
    sum a = (-2.067658792096432e-19,7.540901695530803e-20,-4.0564929372231224e-20)
    sum e = 7.856910346800491e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.04009192930596986 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0769e+04 | 2592 |      1 | 4.265e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 150.91179220747722 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 143                                                     [SPH][rank=0]
Info: time since start : 112.29043933000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008307340000000001 s
sph::RenderFieldGetter compute custom field took :  0.000692928 s
rho_t_ampl=0.00139301, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000371677, eps_t_phi=6.28319 rad
vx_t_ampl=-2.95819e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.44s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 5.076592035711114, dt = 0.04009192930596986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.98 us   (2.3%)
   patch tree reduce : 1.61 us    (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 442.04 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.978389948514611e-20,-6.904499358489968e-20,7.391258641916039e-20)
    sum a = (-1.0012942348145796e-19,1.0794150800525733e-19,3.8688000923619547e-20)
    sum e = 7.85758678568039e-10
    sum de = 4.1359030627651384e-23
Info: cfl dt = 0.040091992462581036 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8439e+04 | 2592 |      1 | 4.435e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3254.0589119797705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.116683965017084, dt = 0.040091992462581036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (2.5%)
   patch tree reduce : 1.38 us    (0.9%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.7%)
   LB compute        : 134.30 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.083554106037476e-20,-6.406243082476362e-20,7.705236689993034e-20)
    sum a = (-1.801724928760487e-19,-6.125324353687134e-20,1.465968530901686e-19)
    sum e = 7.85755181158408e-10
    sum de = -1.613002194478404e-23
Info: cfl dt = 0.04009206265418083 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8704e+04 | 2592 |      1 | 4.415e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3268.8147857052995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.156775957479665, dt = 0.04009206265418083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.6%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 139.57 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0073411738721443e-19,-6.990972230203105e-20,8.509287756278472e-20)
    sum a = (-7.420645865207171e-20,-1.2648870659525426e-19,7.328635625187203e-21)
    sum e = 7.857523314670792e-10
    sum de = -1.943874439499615e-23
Info: cfl dt = 0.04009213977779211 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8431e+04 | 2592 |      1 | 4.436e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3253.6334147635584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.196868020133846, dt = 0.04009213977779211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.7%)
   patch tree reduce : 1.06 us    (0.7%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 129.93 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0055008011154942e-19,-7.629392609915155e-20,8.259492319647658e-20)
    sum a = (-9.926839194173951e-20,-3.0142009104069444e-19,8.327615761975882e-21)
    sum e = 7.857494965399805e-10
    sum de = -1.5716431638507526e-23
Info: cfl dt = 0.040092223762683885 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8191e+04 | 2592 |      1 | 4.454e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3240.2816427751545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.236960159911638, dt = 0.040092223762683885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.9%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 135.49 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0483551953060617e-19,-9.187793969207112e-20,8.294882145665723e-20)
    sum a = (1.701161703129247e-19,2.029064881377384e-19,3.5222683625367415e-20)
    sum e = 7.857466870346131e-10
    sum de = 2.2333876538931747e-23
Info: cfl dt = 0.040092314536045275 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8318e+04 | 2592 |      1 | 4.445e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3247.3729065510047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.277052383674322, dt = 0.040092314536045275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (3.3%)
   patch tree reduce : 1.21 us    (0.8%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 133.53 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.316229804556815e-20,-7.362846658318627e-20,8.490012190681374e-20)
    sum a = (2.0559592795720133e-20,-2.6446320832058638e-20,-9.414462411174494e-20)
    sum e = 7.857439055227416e-10
    sum de = -9.512577044359818e-24
Info: cfl dt = 0.040092412023429475 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8396e+04 | 2592 |      1 | 4.439e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3251.7128740845733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.317144698210368, dt = 0.040092412023429475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.9%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 131.18 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.56599467867362e-20,-7.928987219608223e-20,7.853231945089896e-20)
    sum a = (-4.4050636482390135e-20,1.451699792161556e-19,-6.299754837434986e-20)
    sum e = 7.857411545878945e-10
    sum de = -2.7296960214249913e-23
Info: cfl dt = 0.0400925161487851 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7316e+04 | 2592 |      1 | 4.522e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3191.555823566656 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.357237110233797, dt = 0.0400925161487851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (3.0%)
   patch tree reduce : 1.47 us    (1.0%)
   gen split merge   : 852.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (1.1%)
   LB compute        : 131.31 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.860454319737642e-20,-7.00241294030862e-20,7.66309699222581e-20)
    sum a = (-5.652573466854001e-22,5.645071277686965e-20,2.6096104395568522e-21)
    sum e = 7.85738436740329e-10
    sum de = -3.143286327701505e-23
Info: cfl dt = 0.0400926268344926 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6975e+04 | 2592 |      1 | 4.549e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3172.604657535241 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.397329626382582, dt = 0.0400926268344926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (2.5%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 154.18 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.727684570865025e-20,-6.9542880143172e-20,7.805077409691023e-20)
    sum a = (-9.520642635741884e-20,1.7221811837153847e-20,4.64990883138188e-20)
    sum e = 7.857357544160027e-10
    sum de = -2.0679515313825692e-23
Info: cfl dt = 0.04009274400140067 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5317e+04 | 2592 |      1 | 4.686e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3080.2765904793273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.437422253217075, dt = 0.0017834993305463342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.4%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 154.79 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (55.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.931440126065576e-20,-7.02997745190934e-20,7.90135274189741e-20)
    sum a = (1.3331528793976708e-19,-7.404881511515999e-21,-1.504309534372496e-20)
    sum e = 7.856865686227032e-10
    sum de = 2.0265925007549178e-23
Info: cfl dt = 0.04009274936152184 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9748e+04 | 2592 |      1 | 4.338e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 148.0008977416774 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 153                                                     [SPH][rank=0]
Info: time since start : 113.146918865 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008238630000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007009200000000001 s
rho_t_ampl=0.00131827, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000392606, eps_t_phi=6.28319 rad
vx_t_ampl=-3.73063e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 5.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 5.439205752547621, dt = 0.04009274936152184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.98 us   (4.9%)
   patch tree reduce : 2.05 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 12.79 us   (5.7%)
   LB compute        : 186.61 us  (83.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.435854033739074e-20,-7.062759091637171e-20,7.835552814606328e-20)
    sum a = (-5.170790170202375e-20,-1.7791439042142565e-19,1.2510746294734617e-19)
    sum e = 7.857340671484612e-10
    sum de = 1.737079286361358e-23
Info: cfl dt = 0.04009287317923053 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7768e+04 | 2592 |      1 | 4.487e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3216.7859428730158 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.479298501909143, dt = 0.04009287317923053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (2.8%)
   patch tree reduce : 1.50 us    (0.8%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 159.44 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.994538620579295e-20,-8.117769206286476e-20,8.618095639500392e-20)
    sum a = (6.658862999150917e-20,-2.48340382469421e-19,-5.542165468109537e-21)
    sum e = 7.857309049964051e-10
    sum de = 1.9025154088719637e-23
Info: cfl dt = 0.04009300334542184 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5774e+04 | 2592 |      1 | 4.647e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3105.7591031847646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.519391375088373, dt = 0.04009300334542184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.5%)
   patch tree reduce : 1.39 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 167.57 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.43716858570811e-20,-9.254363702514067e-20,8.333969484486264e-20)
    sum a = (-1.4415376892446737e-19,2.020210141473457e-19,1.4735069610564515e-19)
    sum e = 7.857283509852082e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040093139742406296 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5049e+04 | 2592 |      1 | 4.709e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3065.3831899319 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 5.559484378433795, dt = 0.040093139742406296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (2.9%)
   patch tree reduce : 1.64 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 155.52 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0425711666423042e-19,-7.541954364099757e-20,9.231241390025127e-20)
    sum a = (-2.4331042394883884e-19,-2.9030437309971193e-19,1.4815933212612661e-19)
    sum e = 7.857258355258563e-10
    sum de = 1.4889251025954498e-23
Info: cfl dt = 0.04009328228559129 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5574e+04 | 2592 |      1 | 4.664e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3094.6319033326517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.5995775181762015, dt = 0.04009328228559129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (3.0%)
   patch tree reduce : 1.83 us    (1.1%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 151.26 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.172974721970657e-19,-9.693341900673964e-20,9.826881820491899e-20)
    sum a = (-3.658398129826671e-20,5.83275951604723e-20,5.040336222974925e-21)
    sum e = 7.85723366743371e-10
    sum de = -9.098986738083304e-24
Info: cfl dt = 0.04009343088865763 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8059e+04 | 2592 |      1 | 6.810e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2119.3177007042955 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.639670800461793, dt = 0.04009343088865763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (3.0%)
   patch tree reduce : 2.20 us    (1.3%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 149.46 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1362987220345578e-19,-8.760256481152731e-20,9.560184742534055e-20)
    sum a = (1.612955266006944e-20,-1.1481907958825658e-19,6.98896473523156e-20)
    sum e = 7.857209465184165e-10
    sum de = -1.4889251025954498e-23
Info: cfl dt = 0.04009358546398326 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5747e+04 | 2592 |      1 | 4.650e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3104.278325850691 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.67976423135045, dt = 0.04009358546398326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (2.4%)
   patch tree reduce : 982.00 ns  (0.6%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 152.67 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1328808869150647e-19,-9.56739139014072e-20,9.970398966148393e-20)
    sum a = (1.1641014961796653e-19,8.988223413439234e-20,1.346468498225421e-20)
    sum e = 7.857185767134383e-10
    sum de = 1.3234889800848443e-23
Info: cfl dt = 0.040093745922676644 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6495e+04 | 2592 |      1 | 4.588e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3145.9807462973663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.719857816814434, dt = 0.040093745922676644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.2%)
   patch tree reduce : 1.79 us    (1.0%)
   gen split merge   : 1.09 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 154.99 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0593974318459626e-19,-8.797063936285733e-20,9.911269979455544e-20)
    sum a = (-7.85444801498899e-21,1.6434472232230829e-19,1.6334213241797839e-19)
    sum e = 7.857162591029816e-10
    sum de = 1.1994118882018901e-23
Info: cfl dt = 0.0400939121746145 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5529e+04 | 2592 |      1 | 4.668e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3092.1993920561504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.75995156273711, dt = 0.0400939121746145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (2.2%)
   patch tree reduce : 1.42 us    (0.8%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 157.67 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 932.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0875288439833291e-19,-7.989148512066128e-20,1.0866629905464154e-19)
    sum a = (-2.292249996006201e-19,1.189997656472808e-19,1.3682537144680018e-19)
    sum e = 7.857139953732373e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.04009408412847969 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.8599e+04 | 2592 |      1 | 5.333e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2706.257495037112 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.800045474911725, dt = 0.001773994472404894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (2.7%)
   patch tree reduce : 1.29 us    (0.7%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 159.51 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1386649155788223e-19,-8.059189484166317e-20,1.0837744616449934e-19)
    sum a = (-1.8633774161082666e-20,-3.383122731560765e-21,1.206849254582789e-19)
    sum e = 7.856826777424165e-10
    sum de = -2.8537731133079455e-23
Info: cfl dt = 0.040094091865785116 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3025e+04 | 2592 |      1 | 6.024e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.00732453831907 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 163                                                     [SPH][rank=0]
Info: time since start : 113.83491730700001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000879717 s
sph::RenderFieldGetter compute custom field took :  0.0007234730000000001 s
rho_t_ampl=0.00122788, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000409275, eps_t_phi=6.28319 rad
vx_t_ampl=-4.36195e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.16s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 5.80181946938413, dt = 0.040094091865785116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.59 us   (4.6%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 223.96 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (78.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1443174890456761e-19,-8.083549775342512e-20,1.1320188212166547e-19)
    sum a = (1.4246456964425637e-19,-1.909973148441957e-19,2.1310613877452355e-19)
    sum e = 7.857125840669467e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.04009426964279373 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6162e+04 | 2592 |      1 | 4.615e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3127.4548448735263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.841913561249915, dt = 0.04009426964279373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.6%)
   patch tree reduce : 1.40 us    (0.8%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 152.78 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0415195250670755e-19,-9.225607878191408e-20,1.2359898942075458e-19)
    sum a = (-8.341489519516759e-20,-5.941620850983009e-21,-8.614783911251485e-20)
    sum e = 7.857099727602335e-10
    sum de = 5.37667398159468e-24
Info: cfl dt = 0.04009445296489078 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4881e+04 | 2592 |      1 | 4.723e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3056.122129432723 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.882007830892709, dt = 0.04009445296489078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.3%)
   patch tree reduce : 1.02 us    (0.6%)
   gen split merge   : 651.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 148.83 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1281484998265357e-19,-8.87782672288337e-20,1.1414575409687873e-19)
    sum a = (4.54111977703422e-20,2.0289873433510856e-19,4.680714264887064e-20)
    sum e = 7.857078867016061e-10
    sum de = 1.1580528575742387e-23
Info: cfl dt = 0.04009464170361463 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6882e+04 | 2592 |      1 | 4.557e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3167.5678748733008 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 5.922102283857599, dt = 0.04009464170361463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (2.5%)
   patch tree reduce : 1.27 us    (0.7%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.9%)
   LB compute        : 155.11 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0884490303616542e-19,-7.64551641141036e-20,1.1868784834190018e-19)
    sum a = (-1.801067652775969e-19,6.516316270008596e-20,8.817507988457643e-22)
    sum e = 7.857058561876849e-10
    sum de = -1.1994118882018901e-23
Info: cfl dt = 0.04009483576355522 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7280e+04 | 2592 |      1 | 4.525e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3189.733566472805 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 5.962196925561214, dt = 0.04009483576355522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.2%)
   patch tree reduce : 1.36 us    (0.7%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.8%)
   LB compute        : 166.56 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2046554244244202e-19,-7.659647845077495e-20,1.1780252092970095e-19)
    sum a = (1.9146449429006632e-20,-2.9420823299994427e-19,1.9139582876891692e-19)
    sum e = 7.857038867367309e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.04009503504794944 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.1875e+04 | 2592 |      1 | 6.190e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2331.9296561689193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.002291761324769, dt = 0.04009503504794944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.6%)
   patch tree reduce : 1.24 us    (0.7%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.9%)
   LB compute        : 159.75 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 732.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.143791668258062e-19,-9.561106188538768e-20,1.2929585872565363e-19)
    sum a = (-2.3410856016558814e-19,5.673801427166478e-20,1.793621974996522e-19)
    sum e = 7.85701979434908e-10
    sum de = 1.4475660719677984e-23
Info: cfl dt = 0.04009523945907478 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5794e+04 | 2592 |      1 | 4.646e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3107.049365229047 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.0423867963727185, dt = 0.04009523945907478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (2.2%)
   patch tree reduce : 1.47 us    (0.8%)
   gen split merge   : 952.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.9%)
   LB compute        : 163.93 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2861576465046406e-19,-8.63019799571625e-20,1.3624618455055879e-19)
    sum a = (-2.5659397159594577e-19,8.943354057558629e-20,7.925405724365384e-20)
    sum e = 7.857001353282812e-10
    sum de = 1.819797347616661e-23
Info: cfl dt = 0.040095448898283405 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6959e+04 | 2592 |      1 | 4.551e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3171.923597331058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.082482035831793, dt = 0.040095448898283405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (2.2%)
   patch tree reduce : 1.02 us    (0.6%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 153.58 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4141950082887288e-19,-8.205063672980261e-20,1.3741698162507203e-19)
    sum a = (-1.9277904625910214e-19,6.182173591379305e-20,1.8909814167574673e-19)
    sum e = 7.856983553705238e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.04009566326604042 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7048e+04 | 2592 |      1 | 4.544e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3176.900039361854 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.122577484730076, dt = 0.04009566326604042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.2%)
   patch tree reduce : 961.00 ns  (0.6%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 155.84 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.474138578076762e-19,-8.013056926002967e-20,1.4720112097499622e-19)
    sum a = (-2.477864734034058e-19,-4.669940735031101e-20,1.6835740395820321e-19)
    sum e = 7.856966404227945e-10
    sum de = 1.6543612251060553e-23
Info: cfl dt = 0.040095882461962024 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6795e+04 | 2592 |      1 | 4.564e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3162.8441347161815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.1626731479961165, dt = 0.0017600382245213098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.3%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 732.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 152.16 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4770305924086408e-19,-8.238297189947448e-20,1.4708162962363863e-19)
    sum a = (-2.3568273614850853e-19,1.1438147756168926e-19,-2.1847767653600233e-20)
    sum e = 7.856796106641821e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.04009589219166568 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2989e+04 | 2592 |      1 | 6.029e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.08687736675378 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 173                                                     [SPH][rank=0]
Info: time since start : 114.50682680300001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000860759 s
sph::RenderFieldGetter compute custom field took :  0.0007019410000000001 s
rho_t_ampl=0.00112507, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000421496, eps_t_phi=6.28319 rad
vx_t_ampl=-4.84505e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.53s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 6.164433186220638, dt = 0.04009589219166568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.93 us   (4.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.6%)
   LB compute        : 218.12 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5766736316615555e-19,-7.767030309048108e-20,1.4603823970090143e-19)
    sum a = (1.1206226898038057e-19,-1.181001191434719e-19,-5.894405200745922e-20)
    sum e = 7.856955848231128e-10
    sum de = -6.617444900424222e-24
Info: cfl dt = 0.040096116288397154 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5551e+04 | 2592 |      1 | 4.666e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3093.5489786019702 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.204529078412303, dt = 0.040096116288397154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.3%)
   patch tree reduce : 1.13 us    (0.6%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 158.08 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.477293502802448e-19,-8.705784733935809e-20,1.4293110782801726e-19)
    sum a = (-3.659909864591062e-19,4.857115476528462e-20,1.9168485887054703e-20)
    sum e = 7.856936629756597e-10
    sum de = 1.9025154088719637e-23
Info: cfl dt = 0.04009634503788362 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3771e+04 | 2592 |      1 | 4.820e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2994.4311097804643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.2446251947007, dt = 0.04009634503788362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.2%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 162.53 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7236405417997596e-19,-8.176348928406635e-20,1.4526569875350598e-19)
    sum a = (5.296987159229813e-20,-2.029048962974634e-19,-7.152759842415304e-20)
    sum e = 7.856921528754126e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.04009657830483036 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4188e+04 | 2592 |      1 | 4.783e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3017.6975397790998 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.284721539738584, dt = 0.04009657830483036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.4%)
   patch tree reduce : 1.38 us    (0.8%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 159.13 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.614795638763594e-19,-9.495173191341815e-20,1.4057939605727075e-19)
    sum a = (-2.6520428699313034e-19,-2.6844547919178424e-19,1.2461971235805648e-19)
    sum e = 7.856907076999645e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.0400968159861195 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5394e+04 | 2592 |      1 | 4.679e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3084.84733484121 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 6.324818118043414, dt = 0.0400968159861195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.6%)
   patch tree reduce : 1.43 us    (0.9%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (1.0%)
   LB compute        : 139.42 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7662320255965198e-19,-1.0702178377410887e-19,1.4950866773495915e-19)
    sum a = (-4.3061436125690684e-20,4.196209069189819e-20,4.739700786889978e-20)
    sum e = 7.856893305239374e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.04009705797766207 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.8004e+04 | 2592 |      1 | 5.400e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2673.3562220756494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.3649149340295335, dt = 0.04009705797766207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (3.0%)
   patch tree reduce : 2.09 us    (1.2%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 157.96 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7520348643309332e-19,-9.912214803518427e-20,1.4986095602151872e-19)
    sum a = (-1.3969743774943596e-19,6.124980310788989e-20,6.415534015994876e-20)
    sum e = 7.85688021625619e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.040097304174753635 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.4071e+04 | 2592 |      1 | 5.881e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2454.3307488637292 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.4050119920071955, dt = 0.040097304174753635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.6%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 152.11 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.817762462782724e-19,-9.627285664229915e-20,1.5276939212109785e-19)
    sum a = (6.834520006013327e-19,1.488355252223139e-19,1.4858838951453304e-19)
    sum e = 7.856867812309915e-10
    sum de = -3.143286327701505e-23
Info: cfl dt = 0.040097554472108214 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9499e+04 | 2592 |      1 | 6.562e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2199.7178672029163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.445109296181949, dt = 0.040097554472108214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.2%)
   patch tree reduce : 1.24 us    (0.7%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 150.07 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3863265065451696e-19,-8.854780983676212e-20,1.604201919947602e-19)
    sum a = (-1.1696226144496157e-20,2.3762560287899443e-19,1.1929042309442033e-19)
    sum e = 7.856856094780258e-10
    sum de = 3.556876633978019e-23
Info: cfl dt = 0.040097808763895855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0205e+04 | 2592 |      1 | 6.447e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2239.0381702137547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.485206850654057, dt = 0.040097808763895855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (2.7%)
   patch tree reduce : 1.72 us    (0.9%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.9%)
   LB compute        : 165.95 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5346079686524094e-19,-7.723773333317024e-20,1.6461608816513287e-19)
    sum a = (-6.145530455242431e-21,-2.7889950507522784e-19,8.76430159218778e-21)
    sum e = 7.856845064186265e-10
    sum de = -3.226004388956808e-23
Info: cfl dt = 0.04009806694378022 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4450e+04 | 2592 |      1 | 5.831e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2475.481414928896 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.525304659417953, dt = 0.001742243639192509 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (2.0%)
   patch tree reduce : 1.13 us    (0.7%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 156.19 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.530664312745302e-19,-8.808073309026408e-20,1.624154300721261e-19)
    sum a = (-1.4218851373075885e-19,1.4124100931932724e-19,5.880421457495459e-20)
    sum e = 7.856775085140963e-10
    sum de = -4.632211430296955e-23
Info: cfl dt = 0.040098078247090656 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8240e+04 | 2592 |      1 | 4.451e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 140.92739378465328 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 183                                                     [SPH][rank=0]
Info: time since start : 115.233568653 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000832826 s
sph::RenderFieldGetter compute custom field took :  0.0007042950000000001 s
rho_t_ampl=0.00101319, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000429208, eps_t_phi=6.28319 rad
vx_t_ampl=-5.17705e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 6.89s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 6.527046903057146, dt = 0.040098078247090656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.24 us   (4.4%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 231.45 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5821947499315058e-19,-8.205145832478326e-20,1.6481695692946368e-19)
    sum a = (-2.322616146490928e-19,1.2123147436315054e-20,-1.1010835073592317e-20)
    sum e = 7.856838430499167e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.040098340340555726 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5443e+04 | 2592 |      1 | 4.675e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3087.745053692598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.567144981304237, dt = 0.040098340340555726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (2.9%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 155.16 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6920912945428999e-19,-8.414899031037602e-20,1.6297571605543472e-19)
    sum a = (-4.4398992754184626e-20,6.5233100972813564e-21,-6.502085129569377e-20)
    sum e = 7.856826680020158e-10
    sum de = -4.3840572465310467e-23
Info: cfl dt = 0.040098606133774466 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6029e+04 | 2592 |      1 | 4.626e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3120.3920967806143 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.607243321644793, dt = 0.040098606133774466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.4%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 781.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 160.56 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.677368312489699e-19,-8.400603278374338e-20,1.592856145427017e-19)
    sum a = (-2.780589620603393e-19,4.557130609219586e-21,2.6545254607206738e-20)
    sum e = 7.856817747731028e-10
    sum de = 5.1285197978287716e-23
Info: cfl dt = 0.04009887548845515 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6924e+04 | 2592 |      1 | 4.553e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3170.2544703347135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.647341927778568, dt = 0.04009887548845515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (1.4%)
   patch tree reduce : 811.00 ns  (0.5%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 320.00 ns  (0.2%)
   LB compute        : 139.27 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 1.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (56.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.843790591769633e-19,-8.385362691483329e-20,1.621858860099095e-19)
    sum a = (6.325788393996468e-20,5.2026629204828646e-20,2.2035338769593563e-19)
    sum e = 7.856809482590927e-10
    sum de = 3.556876633978019e-23
Info: cfl dt = 0.04009914829686155 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7869e+04 | 2592 |      1 | 4.479e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3222.877727819953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.687440803267023, dt = 0.04009914829686155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (1.5%)
   patch tree reduce : 551.00 ns  (0.4%)
   gen split merge   : 651.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.2%)
   LB compute        : 142.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 1.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7312649432201673e-19,-8.083056818354124e-20,1.7490761327953378e-19)
    sum a = (1.806720226242823e-19,-1.2021680456205101e-20,9.010768965510537e-20)
    sum e = 7.856801894490452e-10
    sum de = 2.3988237764037803e-23
Info: cfl dt = 0.04009942445066572 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2538e+04 | 2592 |      1 | 6.093e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2369.0887591112455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.727539951563885, dt = 0.04009942445066572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (1.6%)
   patch tree reduce : 971.00 ns  (0.6%)
   gen split merge   : 601.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.5%)
   LB compute        : 159.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.626100785697302e-19,-8.25965865944428e-20,1.7590950899290192e-19)
    sum a = (8.546230988694086e-21,-9.247647163547275e-20,-3.8294213771195585e-20)
    sum e = 7.856794978814248e-10
    sum de = -2.481541837659083e-23
Info: cfl dt = 0.040099703841259875 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6820e+04 | 2592 |      1 | 4.562e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3164.4894126821205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.76763937601455, dt = 0.040099703841259875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (1.9%)
   patch tree reduce : 671.00 ns  (0.4%)
   gen split merge   : 471.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.6%)
   LB compute        : 143.52 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.660016226498426e-19,-8.791189532174104e-20,1.7179950114895665e-19)
    sum a = (-1.5130328844606092e-19,1.0480404217291012e-19,1.4559011437429742e-19)
    sum e = 7.856788730377217e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040099986359789376 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6267e+04 | 2592 |      1 | 4.607e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3133.723086947034 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.80773907985581, dt = 0.040099986359789376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (2.1%)
   patch tree reduce : 1.27 us    (0.7%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.9%)
   LB compute        : 158.77 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.774645158198349e-19,-7.975017078398994e-20,1.8132451629933112e-19)
    sum a = (-3.14955149451252e-19,-1.4329140229290537e-19,3.862333215782074e-20)
    sum e = 7.85678314325481e-10
    sum de = 2.3988237764037803e-23
Info: cfl dt = 0.040100271897189024 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6497e+04 | 2592 |      1 | 4.588e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3146.563994874337 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 6.847839066215599, dt = 0.040100271897189024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (2.1%)
   patch tree reduce : 1.20 us    (0.7%)
   gen split merge   : 551.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 148.64 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 640.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9155651292789884e-19,-9.046787730653505e-20,1.8072863916651977e-19)
    sum a = (7.173510095028438e-20,4.976631871369511e-20,-4.593948429076958e-20)
    sum e = 7.856778210785218e-10
    sum de = -1.737079286361358e-23
Info: cfl dt = 0.040100560344218744 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5988e+04 | 2592 |      1 | 4.630e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3118.2579163249043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.887939338112788, dt = 0.0017212817808660574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (2.5%)
   patch tree reduce : 1.36 us    (0.8%)
   gen split merge   : 1.16 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 157.61 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 932.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8435276813758258e-19,-8.652134581699534e-20,1.789540684032016e-19)
    sum a = (4.8141357891033455e-20,-8.75234349449537e-20,-1.7821810581182778e-19)
    sum e = 7.856764041171819e-10
    sum de = 1.5716431638507526e-23
Info: cfl dt = 0.04010057278817113 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8627e+04 | 2592 |      1 | 4.421e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 140.15762439820426 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 193                                                     [SPH][rank=0]
Info: time since start : 115.89331128600001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000822791 s
sph::RenderFieldGetter compute custom field took :  0.000718065 s
rho_t_ampl=0.000895586, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000432466, eps_t_phi=6.28319 rad
vx_t_ampl=-5.3591e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7.25s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 6.889660619893654, dt = 0.04010057278817113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.11 us   (5.7%)
   patch tree reduce : 1.98 us    (0.9%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 183.14 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8332741760173464e-19,-9.014129330172771e-20,1.7169357588831733e-19)
    sum a = (-1.3588441544425146e-19,1.6291083368233345e-19,-1.837079400504326e-19)
    sum e = 7.856775449153115e-10
    sum de = -1.6543612251060553e-23
Info: cfl dt = 0.040100864125992425 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.4972e+04 | 2592 |      1 | 5.764e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2504.7081809828123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.929761192681825, dt = 0.040100864125992425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.7%)
   patch tree reduce : 1.41 us    (0.8%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 155.50 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.93764960235879e-19,-7.859213265876744e-20,1.6421665599674008e-19)
    sum a = (5.962972050542583e-20,-4.4568138620825404e-20,1.298908485116091e-19)
    sum e = 7.856770969017934e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.040101158177737996 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7248e+04 | 2592 |      1 | 4.528e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3188.4827763703606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 6.969862056807818, dt = 0.040101158177737996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (3.0%)
   patch tree reduce : 1.87 us    (1.2%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 138.57 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 762.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8587764842166412e-19,-8.453801553371256e-20,1.757132206638419e-19)
    sum a = (-8.220797216859658e-20,-2.4449734627259973e-19,2.340563030105621e-19)
    sum e = 7.856767984375347e-10
    sum de = 9.926167350636332e-24
Info: cfl dt = 0.04010145480576763 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7873e+04 | 2592 |      1 | 4.479e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3223.3163055006676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.009963214985556, dt = 0.04010145480576763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.7%)
   patch tree reduce : 1.84 us    (1.2%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 136.67 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9339688568454899e-19,-9.835190274082735e-20,1.8718779660479375e-19)
    sum a = (1.8851578990452286e-19,-6.832679119759814e-20,6.453095779108226e-20)
    sum e = 7.856765616498125e-10
    sum de = -1.3234889800848443e-23
Info: cfl dt = 0.04010175390072045 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8486e+04 | 2592 |      1 | 4.432e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3257.4520153785925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.050064669791324, dt = 0.04010175390072045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.8%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 832.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (1.0%)
   LB compute        : 130.18 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7883164986763215e-19,-9.755331241963809e-20,1.8637649470822898e-19)
    sum a = (2.3636671396989746e-19,-1.336468528641446e-19,1.0092551688153023e-20)
    sum e = 7.856763859359484e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.04010205535301146 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8116e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3236.888485382567 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.090166423692044, dt = 0.04010205535301146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (2.6%)
   patch tree reduce : 1.22 us    (0.8%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 132.77 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6920912945428999e-19,-1.0422877163739808e-19,1.8568968899253586e-19)
    sum a = (-2.5998551567605815e-20,1.758285148146208e-20,1.7234453177975554e-20)
    sum e = 7.856762702261372e-10
    sum de = 0
Info: cfl dt = 0.04010235905309608 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8623e+04 | 2592 |      1 | 4.421e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3265.1404765282387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.130268479045055, dt = 0.04010235905309608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (2.2%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 701.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 147.24 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (56.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7538752370875833e-19,-1.0049790883027832e-19,1.8652403368640208e-19)
    sum a = (-3.5319148662981634e-20,-6.656321189679539e-20,1.070048545273636e-19)
    sum e = 7.856762133983464e-10
    sum de = -6.617444900424221e-23
Info: cfl dt = 0.040102664891501404 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8966e+04 | 2592 |      1 | 4.396e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3284.2726217051236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.170370838098151, dt = 0.040102664891501404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (1.6%)
   patch tree reduce : 531.00 ns  (0.4%)
   gen split merge   : 450.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 451.00 ns  (0.3%)
   LB compute        : 139.64 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 1.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7709644126850488e-19,-1.0484743265782556e-19,1.9261521594290137e-19)
    sum a = (1.6399446611212104e-20,-1.717320679159561e-19,8.3606782984483e-20)
    sum e = 7.856762142738916e-10
    sum de = -1.2407709188295415e-23
Info: cfl dt = 0.04010297275886008 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7513e+04 | 2592 |      1 | 4.507e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3203.341549491645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.210473502989652, dt = 0.04010297275886008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (1.5%)
   patch tree reduce : 581.00 ns  (0.4%)
   gen split merge   : 431.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.2%)
   LB compute        : 142.30 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 1.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7386264342467678e-19,-1.1384964886077895e-19,1.95498933972288e-19)
    sum a = (2.1473617211690348e-19,4.952923721209205e-20,1.4151620881407064e-20)
    sum e = 7.856762716207581e-10
    sum de = 3.88774887899923e-23
Info: cfl dt = 0.04010328254594406 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9394e+04 | 2592 |      1 | 4.364e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3308.162864942102 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.250576475748512, dt = 0.0016978609816495904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (1.4%)
   patch tree reduce : 621.00 ns  (0.4%)
   gen split merge   : 551.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.3%)
   LB compute        : 156.98 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 1.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7005044271447291e-19,-1.0933457364463126e-19,1.941302822203183e-19)
    sum a = (2.961007770378655e-19,-1.820387458745892e-20,1.1976082593116219e-19)
    sum e = 7.856762319437489e-10
    sum de = -9.926167350636332e-24
Info: cfl dt = 0.040103295701485075 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1080e+04 | 2592 |      1 | 4.244e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 144.03511602785616 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 203                                                     [SPH][rank=0]
Info: time since start : 116.533870753 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000636553 s
sph::RenderFieldGetter compute custom field took :  0.0005944300000000001 s
rho_t_ampl=0.000775557, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000431436, eps_t_phi=6.28319 rad
vx_t_ampl=-5.39608e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7.61s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 7.252274336730162, dt = 0.040103295701485075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.09 us   (5.1%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 212.10 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5814060187500845e-19,-1.101089269138914e-19,1.9902274091036991e-19)
    sum a = (1.6486617838658793e-19,-6.22335347229994e-20,-6.254050094436903e-20)
    sum e = 7.85676341657727e-10
    sum de = -2.3161057151484775e-23
Info: cfl dt = 0.04010360734918379 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9087e+04 | 2592 |      1 | 6.631e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2177.0826194724254 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.292377632431647, dt = 0.04010360734918379 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (2.7%)
   patch tree reduce : 1.04 us    (0.6%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.6%)
   LB compute        : 163.57 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 762.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5506455026746464e-19,-1.1348444989188119e-19,1.928591992078474e-19)
    sum a = (-9.164316892635114e-20,-7.420620190364025e-21,2.9541902978822004e-20)
    sum e = 7.856765350009951e-10
    sum de = -4.714929491552258e-23
Info: cfl dt = 0.040103920718911695 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8360e+04 | 2592 |      1 | 6.757e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2136.6495730402057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.33248123978083, dt = 0.040103920718911695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.5%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 159.33 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.611377803644101e-19,-1.1268462717822097e-19,1.9589036362814741e-19)
    sum a = (-2.512092380927828e-19,-6.082141835001171e-20,8.227074600323847e-20)
    sum e = 7.856767559115988e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.04010423567707247 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9383e+04 | 2592 |      1 | 6.582e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2193.6099137962174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.372585160499742, dt = 0.04010423567707247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (2.3%)
   patch tree reduce : 1.55 us    (0.8%)
   gen split merge   : 801.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 168.15 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7541381474813903e-19,-1.161981781129595e-19,2.00247085685309e-19)
    sum a = (1.3913300199773123e-19,-1.0962896139613447e-19,1.4467378406777067e-19)
    sum e = 7.856770279640497e-10
    sum de = -2.5642598989143858e-23
Info: cfl dt = 0.040104552115515356 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9108e+04 | 2592 |      1 | 6.628e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2178.303797130581 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.412689396176815, dt = 0.040104552115515356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.7%)
   patch tree reduce : 1.87 us    (1.1%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 156.58 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (14.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6363542910557814e-19,-1.2156771210898047e-19,2.0730047607094677e-19)
    sum a = (2.368214667916858e-19,-1.811995379515442e-19,1.2685350719772706e-19)
    sum e = 7.856773495332623e-10
    sum de = -3.3914405114674135e-23
Info: cfl dt = 0.040104869926214155 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0600e+04 | 2592 |      1 | 6.384e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2261.426427445715 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.452793948292331, dt = 0.040104869926214155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (1.6%)
   patch tree reduce : 991.00 ns  (0.5%)
   gen split merge   : 691.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.8%)
   LB compute        : 178.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5054249149398145e-19,-1.302827808661976e-19,2.12030582365586e-19)
    sum a = (2.320463567641632e-19,-1.8672116971835754e-19,-8.483484634302721e-20)
    sum e = 7.856777191164682e-10
    sum de = 4.963083675318166e-24
Info: cfl dt = 0.04010518900148175 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9233e+04 | 2592 |      1 | 6.607e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2185.2990241026187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.492898818218545, dt = 0.04010518900148175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (2.4%)
   patch tree reduce : 1.84 us    (0.9%)
   gen split merge   : 982.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.6%)
   LB compute        : 181.18 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4202419473462936e-19,-1.378755508798504e-19,2.043833978772526e-19)
    sum a = (-1.5984130348494853e-19,-1.0681867008998695e-19,7.354310899618498e-20)
    sum e = 7.856781351693077e-10
    sum de = 2.3988237764037803e-23
Info: cfl dt = 0.04010550923399897 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9876e+04 | 2592 |      1 | 6.500e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2221.1600303558384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.533004007220026, dt = 0.04010550923399897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.2%)
   patch tree reduce : 1.70 us    (0.9%)
   gen split merge   : 862.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.7%)
   LB compute        : 180.72 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 932.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5580069937012469e-19,-1.405510749343286e-19,2.1050877063047119e-19)
    sum a = (-2.714385497062827e-20,-1.0337223319523004e-19,2.1605390785041725e-19)
    sum e = 7.856785961130446e-10
    sum de = 2.5642598989143858e-23
Info: cfl dt = 0.04010583051684571 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8707e+04 | 2592 |      1 | 6.696e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2156.0589341932855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.573109516454025, dt = 0.04010583051684571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (3.2%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 145.10 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5493309507056106e-19,-1.446311156082235e-19,2.2203152612091534e-19)
    sum a = (1.3527889994351433e-19,-6.252224833416752e-20,-8.887169644349351e-20)
    sum e = 7.8567910033683e-10
    sum de = -2.150669592637872e-23
Info: cfl dt = 0.04010615274353181 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.7906e+04 | 2592 |      1 | 6.838e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2111.4853994760915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.613215346970871, dt = 0.0016727065957997667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (2.8%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 153.43 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5070023773026574e-19,-1.4391427398760868e-19,2.1576822254507233e-19)
    sum a = (-2.108163424642348e-19,-8.092749071641449e-20,2.4971321795833317e-19)
    sum e = 7.856768464856771e-10
    sum de = -6.534726839168919e-23
Info: cfl dt = 0.04010616620102275 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9175e+04 | 2592 |      1 | 6.616e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.01138957135211 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 213                                                     [SPH][rank=0]
Info: time since start : 117.37227529100001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008196270000000001 s
sph::RenderFieldGetter compute custom field took :  0.00070794 s
rho_t_ampl=0.000656246, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000426383, eps_t_phi=6.28319 rad
vx_t_ampl=-5.29627e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 7.98s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 7.614888053566671, dt = 0.04010616620102275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.76 us   (5.8%)
   patch tree reduce : 1.99 us    (1.0%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.7%)
   LB compute        : 175.91 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6005984774980073e-19,-1.4717888164321104e-19,2.260664389768834e-19)
    sum a = (-2.2003956771698236e-19,6.126274322883508e-20,-3.5120903138205696e-20)
    sum e = 7.856794480168011e-10
    sum de = -5.2112378590840744e-23
Info: cfl dt = 0.04010648927717783 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8742e+04 | 2592 |      1 | 4.413e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3272.1018656494225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.654994219767693, dt = 0.04010648927717783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.5%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 722.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.9%)
   LB compute        : 133.16 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7005044271447291e-19,-1.4186809168830636e-19,2.1894606055156026e-19)
    sum a = (-2.6874700454968183e-19,-1.2162345219344878e-19,7.870767815005079e-20)
    sum e = 7.856801473992007e-10
    sum de = 1.819797347616661e-23
Info: cfl dt = 0.04010681310255286 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5229e+04 | 2592 |      1 | 4.693e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3076.4238595862366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.695100709044871, dt = 0.04010681310255286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (3.2%)
   patch tree reduce : 1.84 us    (1.2%)
   gen split merge   : 971.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 130.97 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8227577602650599e-19,-1.5041309028452947e-19,2.2438540707628754e-19)
    sum a = (1.1832282273291363e-19,7.546211253093236e-20,3.4493605143066257e-19)
    sum e = 7.856807727676113e-10
    sum de = 3.88774887899923e-23
Info: cfl dt = 0.04010713755067685 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7529e+04 | 2592 |      1 | 4.506e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3204.570810697486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.735207522147424, dt = 0.04010713755067685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.7%)
   patch tree reduce : 1.87 us    (1.1%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 153.24 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6784199540649275e-19,-1.4342994374651705e-19,2.435585905420927e-19)
    sum a = (3.0127887940339567e-19,1.1723110272753529e-19,2.5020624687514694e-19)
    sum e = 7.856814349540772e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.04010746251723383 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5782e+04 | 2592 |      1 | 4.647e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3107.3281086692227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.7753146596981, dt = 0.04010746251723383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (2.6%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 153.76 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5248802840815444e-19,-1.3789075038699238e-19,2.5169405755948653e-19)
    sum a = (-2.6672916727721187e-19,-2.006191163619298e-20,6.618363556633164e-20)
    sum e = 7.856821318902506e-10
    sum de = -3.639594695233322e-23
Info: cfl dt = 0.040107787898356326 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6183e+04 | 2592 |      1 | 4.613e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3129.6686361755405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.815422122215335, dt = 0.040107787898356326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.8%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 137.25 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7536123266937761e-19,-1.414441486782923e-19,2.506581967844074e-19)
    sum a = (1.260918248699153e-19,-2.4858434482898697e-20,5.4156234719467876e-20)
    sum e = 7.856828618365268e-10
    sum de = 2.812414082680294e-23
Info: cfl dt = 0.040108113590787885 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7515e+04 | 2592 |      1 | 4.507e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3203.884557804947 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.855529910113691, dt = 0.040108113590787885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (3.0%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 135.84 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6061195957679577e-19,-1.4254467515486947e-19,2.525891049771316e-19)
    sum a = (-2.6657799380077273e-19,2.3619571951455024e-20,3.1814308856260413e-20)
    sum e = 7.856836230274132e-10
    sum de = -1.3234889800848443e-23
Info: cfl dt = 0.040108439491909044 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8724e+04 | 2592 |      1 | 4.414e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3271.243532622453 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.895638023704478, dt = 0.040108439491909044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (2.3%)
   patch tree reduce : 1.69 us    (1.1%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.8%)
   LB compute        : 133.48 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8169737316013023e-19,-1.4062296449513525e-19,2.534170810086915e-19)
    sum a = (-2.5751087159434824e-19,-1.675684813024666e-19,1.8043108329902891e-19)
    sum e = 7.856844136853503e-10
    sum de = 2.2333876538931747e-23
Info: cfl dt = 0.040108765499765275 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7915e+04 | 2592 |      1 | 4.476e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3226.213717444409 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 7.935746463196387, dt = 0.040108765499765275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (2.7%)
   patch tree reduce : 1.47 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 152.10 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9061003551019306e-19,-1.5117553042657026e-19,2.6363434247022844e-19)
    sum a = (-1.2643032200194202e-19,3.359417148884773e-20,-2.9072092991816915e-20)
    sum e = 7.856852320231483e-10
    sum de = -1.1580528575742387e-23
Info: cfl dt = 0.0401090915130945 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6194e+04 | 2592 |      1 | 4.613e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3130.3866188341703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 7.975855228696152, dt = 0.0016465417070259392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.4%)
   patch tree reduce : 2.01 us    (1.1%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.6%)
   LB compute        : 166.20 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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.272762345679012
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.876128570207914e-19,-1.470913817777721e-19,2.593850171719354e-19)
    sum a = (-1.450608097831021e-20,-1.2772469354426568e-19,3.399186118239432e-19)
    sum e = 7.856780462041287e-10
    sum de = 4.301339185275744e-23
Info: cfl dt = 0.04010910489471725 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0040e+04 | 2592 |      1 | 4.317e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 137.30249849040058 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 223                                                     [SPH][rank=0]
Info: time since start : 118.001444817 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000825415 s
sph::RenderFieldGetter compute custom field took :  0.0006588960000000001 s
rho_t_ampl=0.000540581, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000417658, eps_t_phi=6.28319 rad
vx_t_ampl=-5.07088e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8.34s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 7.977501770403178, dt = 0.04010910489471725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.25 us   (4.5%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 220.25 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (77.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8834900612345145e-19,-1.5233685493171533e-19,2.733226277217429e-19)
    sum a = (-1.1050123851715053e-19,8.67121612512507e-20,8.190383156403242e-20)
    sum e = 7.85685771321914e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.04010943078959255 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5117e+04 | 2592 |      1 | 4.703e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3070.4079464469846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.017610875297896, dt = 0.04010943078959255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.9%)
   patch tree reduce : 1.36 us    (0.9%)
   gen split merge   : 1.06 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 139.38 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9479031077172695e-19,-1.4456086923737816e-19,2.7143337284235236e-19)
    sum a = (-1.8734008748721648e-19,6.08347821058688e-20,-7.665692680765084e-20)
    sum e = 7.856868109232262e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.040109756503068444 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6718e+04 | 2592 |      1 | 4.570e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3159.637477297813 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.057720306087488, dt = 0.040109756503068444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (3.0%)
   patch tree reduce : 1.59 us    (1.0%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (1.1%)
   LB compute        : 135.59 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.042287939094041e-19,-1.4264614213497944e-19,2.6517879129190153e-19)
    sum a = (-1.4148522842732467e-19,-3.8575360644875523e-19,2.0057771531791714e-19)
    sum e = 7.856877022461447e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04011008191852051 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7640e+04 | 2592 |      1 | 4.497e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3211.0191714558327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.097830062590557, dt = 0.04011008191852051 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.6%)
   patch tree reduce : 1.77 us    (1.2%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 132.05 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (56.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0888230787979086e-19,-1.6707873366947133e-19,2.7878388687925587e-19)
    sum a = (1.3841903595954864e-19,2.860619133680803e-20,-3.998698656370855e-20)
    sum e = 7.856886141423665e-10
    sum de = -2.481541837659083e-23
Info: cfl dt = 0.04011040693783717 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7014e+04 | 2592 |      1 | 4.546e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3176.1811035135584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.137940144509077, dt = 0.04011040693783717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (3.0%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 136.24 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9755086990670215e-19,-1.5761601347986508e-19,2.7235545762638333e-19)
    sum a = (1.1129325607849462e-19,-7.712977061774454e-20,3.605661087580422e-20)
    sum e = 7.856895446329581e-10
    sum de = 1.4889251025954498e-23
Info: cfl dt = 0.04011073146364924 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8005e+04 | 2592 |      1 | 4.469e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3231.4112150873075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.178050551446914, dt = 0.04011073146364924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.67 us    (3.0%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 882.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 136.10 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.931076842513611e-19,-1.628351955944276e-19,2.7532678448187325e-19)
    sum a = (-1.7974526348611206e-19,-2.30877406830604e-19,2.2840213836998623e-19)
    sum e = 7.856904919376053e-10
    sum de = -5.624828165360588e-23
Info: cfl dt = 0.04011105539943927 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7728e+04 | 2592 |      1 | 4.490e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3215.973250446939 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.218161282910563, dt = 0.04011105539943927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.6%)
   patch tree reduce : 1.64 us    (1.1%)
   gen split merge   : 1.11 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 135.10 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.74 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0621376738264816e-19,-1.7517801698869325e-19,2.883457952081559e-19)
    sum a = (-7.826513785646978e-20,8.764861264270827e-20,1.5313669490863578e-19)
    sum e = 7.856914542676372e-10
    sum de = 0
Info: cfl dt = 0.04011137864956424 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7278e+04 | 2592 |      1 | 4.525e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3190.941907429307 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.258272338310002, dt = 0.04011137864956424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (2.5%)
   patch tree reduce : 1.29 us    (0.9%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (1.1%)
   LB compute        : 134.33 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0879028924195835e-19,-1.652782082693826e-19,2.929788309766138e-19)
    sum a = (2.558841135326664e-19,9.551132795719003e-20,1.9704436588437118e-20)
    sum e = 7.856924298435384e-10
    sum de = 3.143286327701505e-23
Info: cfl dt = 0.04011170111927964 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8177e+04 | 2592 |      1 | 4.455e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3241.0604593447865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.298383716959567, dt = 0.04011170111927964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (2.4%)
   patch tree reduce : 1.10 us    (0.7%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 133.45 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (54.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.905311623920509e-19,-1.6128279187849437e-19,2.910931335289851e-19)
    sum a = (2.0131048853814457e-19,-1.6967022396233519e-19,3.3534383068286655e-20)
    sum e = 7.856934168966074e-10
    sum de = -4.6735704609246064e-23
Info: cfl dt = 0.04011202271476324 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8311e+04 | 2592 |      1 | 4.445e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3248.531866951871 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.338495418078846, dt = 0.0016200691608396767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (2.2%)
   patch tree reduce : 1.12 us    (0.8%)
   gen split merge   : 570.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.6%)
   LB compute        : 127.88 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.29 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9041285271483768e-19,-1.668873020389805e-19,2.914248328886839e-19)
    sum a = (-7.913274215603342e-20,-2.1095737437763156e-19,9.274161845169151e-20)
    sum e = 7.856795999980695e-10
    sum de = -9.926167350636332e-24
Info: cfl dt = 0.0401120356836169 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0960e+04 | 2592 |      1 | 4.252e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 137.1662880217817 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 233                                                     [SPH][rank=0]
Info: time since start : 118.89904173400001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000777674 s
sph::RenderFieldGetter compute custom field took :  0.000731835 s
rho_t_ampl=0.000431209, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000405683, eps_t_phi=6.28319 rad
vx_t_ampl=-4.73361e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 8.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 8.340115487239686, dt = 0.0401120356836169 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.52 us   (5.2%)
   patch tree reduce : 1.93 us    (0.9%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.6%)
   LB compute        : 195.28 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.95526459874387e-19,-1.7537437818906796e-19,2.951928479054337e-19)
    sum a = (-2.3931418596296995e-20,-1.8986279487529426e-19,8.461756732307452e-20)
    sum e = 7.856940548635055e-10
    sum de = 3.350081480839762e-23
Info: cfl dt = 0.040112356257505755 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6860e+04 | 2592 |      1 | 4.559e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3167.745487893422 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.380227522923303, dt = 0.040112356257505755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (2.5%)
   patch tree reduce : 1.34 us    (0.9%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 134.68 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (5.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9461941901575228e-19,-1.825637450672229e-19,2.984241217971791e-19)
    sum a = (1.066496012478756e-19,1.7143991387580653e-21,1.8059786577137237e-19)
    sum e = 7.856952581514986e-10
    sum de = -1.6543612251060553e-23
Info: cfl dt = 0.04011267578223224 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7779e+04 | 2592 |      1 | 4.486e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3218.981291523112 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.420339879180808, dt = 0.04011267578223224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (1.9%)
   patch tree reduce : 791.00 ns  (0.5%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.5%)
   LB compute        : 134.50 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8779689429645642e-19,-1.7865623933926395e-19,3.0759338339632898e-19)
    sum a = (-2.0110016022309884e-19,-4.523811081527863e-20,1.472786481569009e-19)
    sum e = 7.856962696468535e-10
    sum de = -4.342698215903395e-23
Info: cfl dt = 0.04011299415333657 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8696e+04 | 2592 |      1 | 4.416e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3270.056201695631 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.460452554963041, dt = 0.04011299415333657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (1.5%)
   patch tree reduce : 961.00 ns  (0.6%)
   gen split merge   : 581.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.4%)
   LB compute        : 157.29 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0157339893195175e-19,-1.8141638767674883e-19,3.1283290946200915e-19)
    sum a = (-6.67989583065549e-20,-1.3856191004294106e-19,1.2809820553775243e-19)
    sum e = 7.85697285377309e-10
    sum de = -2.274746684520826e-23
Info: cfl dt = 0.04011331128098736 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8105e+04 | 2592 |      1 | 4.461e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3237.1619087592176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.500565549116377, dt = 0.04011331128098736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (1.5%)
   patch tree reduce : 1.05 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.4%)
   LB compute        : 205.43 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 1.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0107386918371812e-19,-1.88837033541956e-19,3.175866601639799e-19)
    sum a = (-2.768775084781684e-20,9.439230275612672e-20,4.5381769659006606e-20)
    sum e = 7.856983038951316e-10
    sum de = -3.680953725860973e-23
Info: cfl dt = 0.0401136270763545 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8214e+04 | 2592 |      1 | 4.453e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3243.265788875842 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.540678860397364, dt = 0.0401136270763545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (2.1%)
   patch tree reduce : 992.00 ns  (0.6%)
   gen split merge   : 681.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.6%)
   LB compute        : 145.83 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0386071935807405e-19,-1.803807672036428e-19,3.1774807247790946e-19)
    sum a = (-5.613136907782927e-20,-6.081095585143003e-20,2.22311581819021e-20)
    sum e = 7.856993235554501e-10
    sum de = -8.271806125530277e-24
Info: cfl dt = 0.040113941451664914 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7594e+04 | 2592 |      1 | 4.500e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3208.7511080746067 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.580792487473719, dt = 0.040113941451664914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.2%)
   patch tree reduce : 1.09 us    (0.6%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.9%)
   LB compute        : 171.91 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (51.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0584569283131814e-19,-1.8594460841258687e-19,3.1817552435792736e-19)
    sum a = (-1.3401857324320126e-19,7.86774758373822e-21,8.019340232373714e-20)
    sum e = 7.857003427231235e-10
    sum de = -3.350081480839762e-23
Info: cfl dt = 0.040114254320221726 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6923e+04 | 2592 |      1 | 4.554e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3171.410208734205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.620906428925384, dt = 0.040114254320221726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.2%)
   patch tree reduce : 1.44 us    (0.8%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 154.03 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1306258314132477e-19,-1.8423938803025324e-19,3.225549699275276e-19)
    sum a = (-7.70656091847246e-20,6.691572107446862e-20,2.6442107376575065e-19)
    sum e = 7.857013597893421e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.04011456559642439 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6663e+04 | 2592 |      1 | 4.574e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3156.9329527588493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.661020683245605, dt = 0.04011456559642439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.5%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 155.76 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1406164263779199e-19,-1.8036392450653953e-19,3.368571842687073e-19)
    sum a = (-3.616069556423718e-19,1.5930031528374616e-19,-1.823829769180898e-19)
    sum e = 7.857023731733661e-10
    sum de = 1.3648480107124957e-23
Info: cfl dt = 0.040114875195788026 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.9428e+04 | 2592 |      1 | 5.244e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2753.8390177056945 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.701135248842029, dt = 0.0015939552341670549 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (3.1%)
   patch tree reduce : 1.44 us    (0.9%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 146.95 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.220409730898394e-19,-1.7827378687577258e-19,3.276047987680351e-19)
    sum a = (-1.3048242844649492e-19,1.8207757907484638e-19,5.503668576310696e-20)
    sum e = 7.856812732953746e-10
    sum de = -4.549493369041652e-24
Info: cfl dt = 0.04011488746172827 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2442e+04 | 2592 |      1 | 4.943e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.09641434217413 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 243                                                     [SPH][rank=0]
Info: time since start : 119.54142785500001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007028020000000001 s
sph::RenderFieldGetter compute custom field took :  0.000599979 s
rho_t_ampl=0.00033045, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000390935, eps_t_phi=6.28319 rad
vx_t_ampl=-4.30014e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9.07s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 8.702729204076196, dt = 0.04011488746172827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.45 us   (5.4%)
   patch tree reduce : 1.80 us    (0.8%)
   gen split merge   : 982.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 187.15 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2497242398078923e-19,-1.709480352308302e-19,3.300018073807283e-19)
    sum a = (-1.7312649432201673e-20,2.0759298144414523e-20,-2.2122446787858136e-21)
    sum e = 7.85703019830535e-10
    sum de = -2.5229008682867344e-23
Info: cfl dt = 0.040115195219726334 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8066e+04 | 2592 |      1 | 6.809e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2120.838165956996 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.742844091537924, dt = 0.040115195219726334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.3%)
   patch tree reduce : 1.09 us    (0.6%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.7%)
   LB compute        : 171.55 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2407852864184487e-19,-1.733409306119657e-19,3.28764795552557e-19)
    sum a = (1.195585015838073e-19,1.0490904907201873e-19,-2.280132611012816e-20)
    sum e = 7.857042179923724e-10
    sum de = -1.943874439499615e-23
Info: cfl dt = 0.04011550114154496 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9354e+04 | 2592 |      1 | 6.586e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2192.654271814697 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.78295928675765, dt = 0.04011550114154496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.1%)
   patch tree reduce : 1.45 us    (0.8%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.6%)
   LB compute        : 169.29 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.178212612692344e-19,-1.674595429430014e-19,3.274371414184648e-19)
    sum a = (1.2966740622569271e-19,-2.295919605056287e-19,4.820159090965844e-20)
    sum e = 7.857052116342479e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.0401158051367676 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0784e+04 | 2592 |      1 | 6.355e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2272.343195496423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.823074787899195, dt = 0.0401158051367676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.2%)
   patch tree reduce : 1.57 us    (0.8%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 170.78 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1177432221166966e-19,-1.8337917808551544e-19,3.3079494584606404e-19)
    sum a = (3.5183326175259048e-19,-1.2974375358114045e-19,7.97563970950346e-20)
    sum e = 7.857061946932979e-10
    sum de = 6.617444900424222e-24
Info: cfl dt = 0.04011610712559128 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.0186e+04 | 2592 |      1 | 6.450e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2239.021682052145 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.863190593035963, dt = 0.04011610712559128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (2.2%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.9%)
   LB compute        : 151.23 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9297622905445752e-19,-1.8657641495270471e-19,3.3462738524390635e-19)
    sum a = (-4.940743575621108e-20,1.666397419920188e-19,-2.486173379415389e-20)
    sum e = 7.857071665726768e-10
    sum de = -8.271806125530277e-24
Info: cfl dt = 0.04011640702943305 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.0493e+04 | 2592 |      1 | 6.401e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2256.1574202467004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.903306700161554, dt = 0.04011640702943305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (1.5%)
   patch tree reduce : 521.00 ns  (0.3%)
   gen split merge   : 551.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 166.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 1.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0276964122377432e-19,-1.7395096488509637e-19,3.315315857385378e-19)
    sum a = (4.0030736561078613e-19,6.234929135799737e-20,-1.0341301083798397e-19)
    sum e = 7.857081259046064e-10
    sum de = -4.549493369041652e-23
Info: cfl dt = 0.040116704770933966 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9815e+04 | 2592 |      1 | 6.510e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2218.385426854695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 8.943423107190988, dt = 0.040116704770933966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.4%)
   patch tree reduce : 1.46 us    (0.8%)
   gen split merge   : 1.00 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 170.91 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (55.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.779377545286878e-19,-1.7353852420481138e-19,3.258073990119929e-19)
    sum a = (-3.108060947989827e-19,2.413438946410392e-20,-1.7993621212616998e-20)
    sum e = 7.857090713471652e-10
    sum de = 1.1580528575742387e-23
Info: cfl dt = 0.040117000273974246 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8818e+04 | 2592 |      1 | 6.677e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2162.8272377619733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 8.983539811961922, dt = 0.040117000273974246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (3.1%)
   patch tree reduce : 1.80 us    (1.0%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.6%)
   LB compute        : 156.62 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0401846559435836e-19,-1.7333805502953343e-19,3.267989211225357e-19)
    sum a = (1.5938942624559248e-20,-1.6812619586163925e-19,8.322936569032802e-20)
    sum e = 7.857100015978871e-10
    sum de = 0
Info: cfl dt = 0.04011729346368892 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9355e+04 | 2592 |      1 | 6.586e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2192.758960163954 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.023656812235897, dt = 0.04011729346368892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (2.8%)
   patch tree reduce : 1.73 us    (1.0%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 155.82 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9815556381245863e-19,-1.8393786267235565e-19,3.321682393073612e-19)
    sum a = (1.7810207352481727e-19,-1.0520064709134644e-19,7.086705225952804e-20)
    sum e = 7.857109153942514e-10
    sum de = -1.5716431638507526e-23
Info: cfl dt = 0.04011758426648279 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8660e+04 | 2592 |      1 | 6.705e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2154.057421442343 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.063774105699586, dt = 0.001568815213115471 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.9%)
   patch tree reduce : 1.86 us    (1.0%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 167.81 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9368608711773685e-19,-1.8283446061334622e-19,3.3203144533918243e-19)
    sum a = (-3.2508870194255684e-20,9.231829133387153e-21,-8.512403576169746e-20)
    sum e = 7.856828512566848e-10
    sum de = 1.4475660719677984e-23
Info: cfl dt = 0.04011759558897413 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.0040e+04 | 2592 |      1 | 6.474e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.24266864895132 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 253                                                     [SPH][rank=0]
Info: time since start : 120.384008703 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000838024 s
sph::RenderFieldGetter compute custom field took :  0.0007050860000000001 s
rho_t_ampl=0.000240259, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000373932, eps_t_phi=6.28319 rad
vx_t_ampl=-3.78758e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9.43s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 9.065342920912702, dt = 0.04011759558897413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.83 us   (9.3%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 207.18 us  (84.0%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9414618030689938e-19,-1.8237601061414498e-19,3.2849411310159965e-19)
    sum a = (4.422810099820997e-20,4.9280421906002194e-20,9.363696371153527e-20)
    sum e = 7.857114921028303e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04011788382934069 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6100e+04 | 2592 |      1 | 4.620e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3125.8333521878963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.105460516501676, dt = 0.04011788382934069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.8%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 140.62 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9170111364449279e-19,-1.7960148436449876e-19,3.358363606758693e-19)
    sum a = (-2.2325036090135234e-19,5.489123082761682e-20,5.0992941226285695e-20)
    sum e = 7.857125394787705e-10
    sum de = 2.5229008682867344e-23
Info: cfl dt = 0.04011816954207772 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6736e+04 | 2592 |      1 | 4.569e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3161.2813011008834 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.145578400331017, dt = 0.04011816954207772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.6%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 148.70 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0593771146915064e-19,-1.772788353542086e-19,3.370267101674045e-19)
    sum a = (1.3471528578679024e-19,6.585560198696895e-20,-7.015011047537959e-20)
    sum e = 7.857133974447973e-10
    sum de = -2.357464745776129e-23
Info: cfl dt = 0.04011845265222544 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6322e+04 | 2592 |      1 | 4.602e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3138.22240053373 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 9.185696569873095, dt = 0.04011845265222544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.6%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 152.54 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9513209428367625e-19,-1.744176308341041e-19,3.317823775382596e-19)
    sum a = (6.148816835165021e-20,1.1503424119252439e-20,-8.244405445912605e-20)
    sum e = 7.8571423279815e-10
    sum de = -1.5302841332231012e-23
Info: cfl dt = 0.04011873309140288 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6797e+04 | 2592 |      1 | 4.564e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3164.7533247497054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.22581502252532, dt = 0.04011873309140288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (3.0%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 862.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 132.86 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9263444554250822e-19,-1.7504491860182836e-19,3.2822821951763245e-19)
    sum a = (2.234738347360884e-21,-7.593269068416434e-20,1.798620417381598e-19)
    sum e = 7.857150459749607e-10
    sum de = -1.0339757656912846e-23
Info: cfl dt = 0.0401190107926242 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7930e+04 | 2592 |      1 | 4.474e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3227.884389873895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.265933755616722, dt = 0.0401190107926242 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.7%)
   patch tree reduce : 1.88 us    (1.3%)
   gen split merge   : 861.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (1.0%)
   LB compute        : 131.59 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9371237815711757e-19,-1.7985823279595106e-19,3.4070580084208845e-19)
    sum a = (2.4547943469774794e-19,7.953939636854456e-20,3.2447537177543755e-20)
    sum e = 7.85715835981878e-10
    sum de = 8.271806125530277e-24
Info: cfl dt = 0.04011928569025343 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7670e+04 | 2592 |      1 | 4.495e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3213.438687858172 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.306052766409346, dt = 0.04011928569025343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.7%)
   patch tree reduce : 1.92 us    (1.2%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 143.24 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7894995954484537e-19,-1.7355331291446304e-19,3.390505108063317e-19)
    sum a = (-1.0237073458866403e-19,-2.65410802593969e-21,-1.5582448872827857e-19)
    sum e = 7.857166018647804e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.04011955772001587 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4871e+04 | 2592 |      1 | 4.724e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3057.459454417611 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.346172052099599, dt = 0.04011955772001587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.6%)
   patch tree reduce : 1.65 us    (1.0%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (1.0%)
   LB compute        : 140.16 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9020252439979195e-19,-1.753037210207323e-19,3.290222316391942e-19)
    sum a = (6.587219916838464e-20,2.449861439363986e-21,3.107212073082327e-20)
    sum e = 7.857173427160686e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.040119826819009 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep 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.0653e+04 | 2592 |      1 | 6.376e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2265.2704652376406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.386291609819615, dt = 0.040119826819009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (3.1%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (1.0%)
   LB compute        : 141.37 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 752.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.843396226178922e-19,-1.7510243025047368e-19,3.340179443972539e-19)
    sum a = (3.4263797072918496e-20,4.3553369329708694e-20,1.2061255367123316e-19)
    sum e = 7.857180576752101e-10
    sum de = 2.771055052052643e-23
Info: cfl dt = 0.040120092925712926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4929e+04 | 2592 |      1 | 4.719e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3060.7277208341234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.426411436638624, dt = 0.0015452011105860919 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.7%)
   patch tree reduce : 13.11 us   (7.8%)
   gen split merge   : 1.10 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 139.19 us  (82.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8533868211435943e-19,-1.7421182129145192e-19,3.360004883805646e-19)
    sum a = (5.0741706004782427e-20,1.2097151657630507e-20,3.436853090073216e-20)
    sum e = 7.856841571836219e-10
    sum de = -1.9025154088719637e-23
Info: cfl dt = 0.04012010311412675 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7779e+04 | 2592 |      1 | 4.486e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.00049313116045 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 263                                                     [SPH][rank=0]
Info: time since start : 121.042258825 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008122460000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007943090000000001 s
rho_t_ampl=0.000162198, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000355218, eps_t_phi=6.28319 rad
vx_t_ampl=-3.21398e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 9.79s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 9.42795663774921, dt = 0.04012010311412675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.49 us   (5.4%)
   patch tree reduce : 2.16 us    (1.0%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 185.70 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8430018605882114e-19,-1.7375090650730875e-19,3.373127252043215e-19)
    sum a = (-1.9987762689189555e-19,-5.927946429523859e-20,1.4829561177679333e-19)
    sum e = 7.857185033428297e-10
    sum de = 2.895132143935597e-23
Info: cfl dt = 0.04012036604794531 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8676e+04 | 2592 |      1 | 6.702e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2155.1357611901126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.468076740863337, dt = 0.04012036604794531 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 111.01 us  (38.6%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 163.56 us  (56.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.964992283314735e-19,-1.775442105329577e-19,3.4554778254822064e-19)
    sum a = (2.2956021035272423e-19,8.260606061156338e-20,-4.1461679816353285e-20)
    sum e = 7.857192887177063e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040120625869786715 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8884e+04 | 2592 |      1 | 6.666e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2166.7114001250543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.508197106911283, dt = 0.040120625869786715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.7%)
   patch tree reduce : 1.76 us    (0.9%)
   gen split merge   : 962.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.9%)
   LB compute        : 168.68 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7851615739506356e-19,-1.7140278805261851e-19,3.4007774800489056e-19)
    sum a = (5.482076076470056e-19,-1.6152095172350953e-20,-1.38179747711376e-19)
    sum e = 7.857199223448656e-10
    sum de = 2.812414082680294e-23
Info: cfl dt = 0.04012088252108592 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3399e+04 | 2592 |      1 | 5.972e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2418.3315676427114 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.548317732781069, dt = 0.04012088252108592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.7%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.9%)
   LB compute        : 161.94 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4858380906011808e-19,-1.7402901640825788e-19,3.3259365987172323e-19)
    sum a = (3.2660043670694803e-20,3.772897660317142e-20,1.1625995878232659e-19)
    sum e = 7.857205249576276e-10
    sum de = 7.858215819253763e-24
Info: cfl dt = 0.04012113594590625 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.7009e+04 | 2592 |      1 | 5.514e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2619.478421578239 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.588438615302154, dt = 0.04012113594590625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.6%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 150.66 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5785140044182056e-19,-1.71438938231767e-19,3.423623142695696e-19)
    sum a = (-2.1004568637238757e-19,-1.5622139451248087e-19,-1.0636270614827862e-20)
    sum e = 7.857210980694631e-10
    sum de = 1.4475660719677984e-23
Info: cfl dt = 0.04012138608983475 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7391e+04 | 2592 |      1 | 4.516e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3198.0341124002257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.62855975124806, dt = 0.04012138608983475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.4%)
   patch tree reduce : 1.92 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 166.50 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7141757676227016e-19,-1.816012465473945e-19,3.3938996191434946e-19)
    sum a = (-1.0007026864285136e-19,1.4565699889706672e-19,9.302121322329476e-20)
    sum e = 7.857216411104538e-10
    sum de = 4.1359030627651384e-24
Info: cfl dt = 0.04012163289989279 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1516e+04 | 2592 |      1 | 5.031e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2870.6992336183357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.668681137337895, dt = 0.04012163289989279 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.9%)
   patch tree reduce : 1.89 us    (1.2%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 139.42 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7246921833749881e-19,-1.6968524374557515e-19,3.4520156584826075e-19)
    sum a = (1.182702406541522e-19,8.164254151671995e-20,-4.060664103991065e-20)
    sum e = 7.857221535591365e-10
    sum de = -2.5229008682867344e-23
Info: cfl dt = 0.04012187632454322 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8785e+04 | 2592 |      1 | 4.409e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3275.764214984688 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.708802770237789, dt = 0.04012187632454322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.4%)
   patch tree reduce : 1.47 us    (0.9%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.7%)
   LB compute        : 139.04 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (57.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6408237677505032e-19,-1.6770150266480206e-19,3.4089166736154336e-19)
    sum a = (-1.1926272739077424e-19,1.7949024168786126e-19,4.2730854235757966e-20)
    sum e = 7.857226349423775e-10
    sum de = 9.926167350636332e-24
Info: cfl dt = 0.040122116313696735 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9132e+04 | 2592 |      1 | 4.383e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3295.125188651321 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.748924646562331, dt = 0.040122116313696735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (2.0%)
   patch tree reduce : 711.00 ns  (0.5%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.6%)
   LB compute        : 132.89 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 732.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7392837102312856e-19,-1.5853455666822887e-19,3.4427794800469007e-19)
    sum a = (-2.7134981744837274e-19,1.214939611220458e-19,-7.942863834666435e-20)
    sum e = 7.857230848354664e-10
    sum de = 1.3234889800848443e-23
Info: cfl dt = 0.04012235281871769 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8872e+04 | 2592 |      1 | 4.403e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3280.6687859782755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.789046762876028, dt = 0.0015235917096898532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.5%)
   patch tree reduce : 1.21 us    (0.8%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 138.94 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.58 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (57.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7764855309549992e-19,-1.5951102230272828e-19,3.417062825046886e-19)
    sum a = (1.9488890216940463e-19,3.177863272422982e-20,-3.7870390895744444e-20)
    sum e = 7.85685064929406e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.04012236173061429 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0859e+04 | 2592 |      1 | 4.259e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.7838553207891 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 273                                                     [SPH][rank=0]
Info: time since start : 121.75697268200001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000674971 s
sph::RenderFieldGetter compute custom field took :  0.000617425 s
rho_t_ampl=9.74198e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000335344, eps_t_phi=6.28319 rad
vx_t_ampl=-2.59779e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.15s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 9.790570354585718, dt = 0.04012236173061429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.41 us   (5.7%)
   patch tree reduce : 2.27 us    (1.0%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 189.39 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.690513832180057e-19,-1.5830245608619598e-19,3.402184918829047e-19)
    sum a = (2.4463154867771984e-19,-5.666159951975378e-20,1.0301918602796689e-19)
    sum e = 7.857233596322621e-10
    sum de = 1.6957202557337067e-23
Info: cfl dt = 0.040122594571253556 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.2726e+04 | 2592 |      1 | 6.067e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2380.944568232953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.830692716316332, dt = 0.040122594571253556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.5%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 154.66 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5811431083562773e-19,-1.623442925934908e-19,3.471783002017142e-19)
    sum a = (-2.1834050929700353e-19,-1.49317108255189e-19,-1.0195687395603496e-19)
    sum e = 7.857238127831313e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.04012282383080549 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3818e+04 | 2592 |      1 | 5.915e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2441.769650155214 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 9.870815310887584, dt = 0.04012282383080549 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (2.5%)
   patch tree reduce : 13.30 us   (7.1%)
   gen split merge   : 971.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.7%)
   LB compute        : 155.97 us  (83.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.773396333827765e-19,-1.702012053934217e-19,3.3897541683385827e-19)
    sum a = (-2.7349253715790114e-20,-5.483653538832899e-20,5.451269921760618e-20)
    sum e = 7.85724167581005e-10
    sum de = 9.926167350636332e-24
Info: cfl dt = 0.04012304946756728 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.9810e+04 | 2592 |      1 | 5.204e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2775.7197991484322 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.91093813471839, dt = 0.04012304946756728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.39 us    (2.5%)
   patch tree reduce : 1.69 us    (1.0%)
   gen split merge   : 941.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 154.52 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.737311882277732e-19,-1.70501087561358e-19,3.443016331208354e-19)
    sum a = (7.312195327761717e-20,-9.824192455021475e-20,5.0411693641361495e-20)
    sum e = 7.857244869727877e-10
    sum de = -1.2821299494571929e-23
Info: cfl dt = 0.040123271438692515 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8146e+04 | 2592 |      1 | 4.458e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3240.2849221156957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.951061184185956, dt = 0.040123271438692515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (2.7%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 154.61 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6884105490295996e-19,-1.7532549328771946e-19,3.462420427636788e-19)
    sum a = (-1.2160262989565798e-19,7.57407872784307e-23,1.50630782060488e-19)
    sum e = 7.857247734692356e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04012348970294047 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4014e+04 | 2592 |      1 | 5.889e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2452.7712462321815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 9.99118445562465, dt = 0.04012348970294047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.4%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 149.80 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7821381044218533e-19,-1.7335736251157865e-19,3.542964342405883e-19)
    sum a = (-5.0695696685866174e-20,1.0764317916533131e-19,2.943466586785747e-20)
    sum e = 7.857250269256965e-10
    sum de = -5.997059441009451e-24
Info: cfl dt = 0.040123704220547916 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8161e+04 | 2592 |      1 | 4.457e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3241.1513894031004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.03130794532759, dt = 0.040123704220547916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.4%)
   patch tree reduce : 1.59 us    (0.9%)
   gen split merge   : 822.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 151.40 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7764198033565474e-19,-1.6686963774689657e-19,3.5304605650769486e-19)
    sum a = (5.494827230569703e-21,-1.431828233812442e-20,7.71503766341672e-20)
    sum e = 7.857252472503935e-10
    sum de = -9.305781891221561e-24
Info: cfl dt = 0.04012391495323207 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8941e+04 | 2592 |      1 | 4.398e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3284.614754069404 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.071431649548138, dt = 0.04012391495323207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (1.9%)
   patch tree reduce : 841.00 ns  (0.6%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.5%)
   LB compute        : 132.08 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 1.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7695184055191094e-19,-1.6988406973089183e-19,3.570988971911183e-19)
    sum a = (-2.450127687487402e-19,7.46085395331476e-20,9.276679917904391e-21)
    sum e = 7.857254343967958e-10
    sum de = 1.3234889800848443e-23
Info: cfl dt = 0.040124121864192605 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9253e+04 | 2592 |      1 | 4.374e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3302.0333973565384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.111555564501371, dt = 0.040124121864192605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.6%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (1.0%)
   LB compute        : 140.23 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9202975163675174e-19,-1.6511840804564667e-19,3.5610943660934324e-19)
    sum a = (-1.5626079255928724e-19,-2.51056883573559e-19,-1.6305113845909215e-20)
    sum e = 7.857255883632441e-10
    sum de = -1.7163997710475324e-23
Info: cfl dt = 0.04012432491811295 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9204e+04 | 2592 |      1 | 4.378e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3299.3146345792225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.151679686365563, dt = 0.0015043850566645034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.6%)
   patch tree reduce : 1.62 us    (1.1%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (1.0%)
   LB compute        : 132.33 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8953867565542886e-19,-1.7202761103540086e-19,3.5557168393444487e-19)
    sum a = (2.0276964122377432e-20,1.3241511510167373e-19,-1.2226827347585207e-19)
    sum e = 7.856855048446883e-10
    sum de = 4.342698215903395e-24
Info: cfl dt = 0.0401243324560931 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0351e+04 | 2592 |      1 | 4.295e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.09946329456683 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 283                                                     [SPH][rank=0]
Info: time since start : 122.43561257300001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000671405 s
sph::RenderFieldGetter compute custom field took :  0.000538536 s
rho_t_ampl=4.66691e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000314858, eps_t_phi=6.28319 rad
vx_t_ampl=-1.95736e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.52s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 10.153184071422228, dt = 0.0401243324560931 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.88 us   (5.7%)
   patch tree reduce : 1.98 us    (1.0%)
   gen split merge   : 942.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.73 us    (0.8%)
   LB compute        : 180.03 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8976872225001014e-19,-1.6642392246989536e-19,3.505860463837247e-19)
    sum a = (4.9821519626457355e-20,2.1295016584061337e-19,1.0026797279316534e-19)
    sum e = 7.857256748991779e-10
    sum de = 1.8404768629304866e-23
Info: cfl dt = 0.04012453147794078 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8020e+04 | 2592 |      1 | 4.467e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3233.379978988504 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.193308403878321, dt = 0.04012453147794078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (2.8%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (1.0%)
   LB compute        : 148.45 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8633774161082665e-19,-1.562620249517582e-19,3.590738109786874e-19)
    sum a = (1.9028797027777928e-19,-1.629998226886748e-20,-1.4185484794084114e-19)
    sum e = 7.857257683359129e-10
    sum de = 1.1166938269465874e-23
Info: cfl dt = 0.04012472656956083 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7532e+04 | 2592 |      1 | 4.505e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3206.14521049997 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 10.233432935356262, dt = 0.04012472656956083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.9%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 135.86 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.76182827650025e-19,-1.6151324927056595e-19,3.485243916214919e-19)
    sum a = (2.814455765705678e-20,-1.7091585181494764e-19,-2.783809399589404e-20)
    sum e = 7.857258250466679e-10
    sum de = 1.1166938269465874e-23
Info: cfl dt = 0.040124917706129 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8299e+04 | 2592 |      1 | 4.446e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3248.95555658112 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 10.273557661925823, dt = 0.040124917706129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.7%)
   patch tree reduce : 1.75 us    (1.1%)
   gen split merge   : 832.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 141.33 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7819409216264978e-19,-1.7147467761342515e-19,3.4969483592903733e-19)
    sum a = (3.587412323498737e-20,2.121254256916807e-20,2.9436437855447864e-19)
    sum e = 7.857258459133205e-10
    sum de = -6.617444900424222e-24
Info: cfl dt = 0.04012510485816686 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8015e+04 | 2592 |      1 | 4.468e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3233.102483494791 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.313682579631951, dt = 0.04012510485816686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (2.5%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 143.53 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7695841331175613e-19,-1.6677268953918018e-19,3.6797041133287886e-19)
    sum a = (-4.942715403574661e-20,-7.377509561238868e-20,-2.788853097424206e-20)
    sum e = 7.857258342615864e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.04012528799783827 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8756e+04 | 2592 |      1 | 4.411e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3274.424096484041 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.353807684490118, dt = 0.04012528799783827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (2.3%)
   patch tree reduce : 1.06 us    (0.7%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (1.0%)
   LB compute        : 141.59 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8025793875403603e-19,-1.716316022547288e-19,3.603861601028285e-19)
    sum a = (-2.347592633902609e-19,2.1514260488389247e-20,-4.5663775296778207e-20)
    sum e = 7.857257903322845e-10
    sum de = 7.237830359838992e-24
Info: cfl dt = 0.04012546709878812 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8540e+04 | 2592 |      1 | 4.428e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3262.38894981614 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 10.393932972487956, dt = 0.04012546709878812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.6%)
   patch tree reduce : 1.43 us    (0.9%)
   gen split merge   : 842.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.7%)
   LB compute        : 138.75 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9356120468067845e-19,-1.6885748680257292e-19,3.581972613907558e-19)
    sum a = (3.9738906023952663e-19,9.046116333505258e-20,1.1117919312231953e-19)
    sum e = 7.857257144187576e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.04012564213614186 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8976e+04 | 2592 |      1 | 4.395e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3286.727979580185 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.434058439586744, dt = 0.04012564213614186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (1.4%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 216.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.650288541927561e-19,-1.6385109778799808e-19,3.658050965914696e-19)
    sum a = (2.4107568560147795e-19,1.128314744435901e-19,4.347988351612234e-20)
    sum e = 7.857256068524217e-10
    sum de = -5.583469134732937e-24
Info: cfl dt = 0.040125813086501996 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8329e+04 | 2592 |      1 | 4.444e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3250.6698633388205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.474184081722886, dt = 0.040125813086501996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (2.9%)
   patch tree reduce : 1.98 us    (1.2%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.9%)
   LB compute        : 146.54 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.583706484695897e-19,-1.5886935662284268e-19,3.6619152313540634e-19)
    sum a = (-6.642431099537969e-20,2.0275249042855332e-19,2.1854139718125555e-19)
    sum e = 7.857254680020784e-10
    sum de = -9.512577044359818e-24
Info: cfl dt = 0.040125979927946684 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8737e+04 | 2592 |      1 | 4.413e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3273.4564030876595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.514309894809388, dt = 0.0014878934493456342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (3.1%)
   patch tree reduce : 1.88 us    (1.2%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 136.59 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6411524057427622e-19,-1.5677428942219185e-19,3.7002893223661636e-19)
    sum a = (2.3237992432630603e-19,2.8930772703850037e-20,9.629047155530476e-20)
    sum e = 7.856854634817878e-10
    sum de = 9.512577044359818e-24
Info: cfl dt = 0.04012598603564518 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9156e+04 | 2592 |      1 | 4.382e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.24788294685334 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 293                                                     [SPH][rank=0]
Info: time since start : 123.060504476 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007271690000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006454960000000001 s
rho_t_ampl=1.02855e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000294286, eps_t_phi=6.28319 rad
vx_t_ampl=-1.3105e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 10.88s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 10.515797788258734, dt = 0.04012598603564518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.94 us   (5.1%)
   patch tree reduce : 1.93 us    (0.9%)
   gen split merge   : 841.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 189.53 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5484107643272856e-19,-1.5571977226453093e-19,3.7380173417793638e-19)
    sum a = (1.5833121191051864e-19,-9.564926605198778e-20,2.7877708813073137e-19)
    sum e = 7.857253701732515e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040126148602597896 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7493e+04 | 2592 |      1 | 4.508e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3204.109768757298 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.55592377429438, dt = 0.040126148602597896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.5%)
   patch tree reduce : 1.70 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 163.03 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4988521550946353e-19,-1.620723446548965e-19,3.886492127574692e-19)
    sum a = (1.8045512154939139e-19,-1.2540746192587916e-19,1.0196365703048557e-19)
    sum e = 7.857251164887564e-10
    sum de = -2.68833699079734e-24
Info: cfl dt = 0.040126307011574616 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9746e+04 | 2592 |      1 | 4.338e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3329.6669621449814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.596049922896977, dt = 0.040126307011574616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (2.1%)
   patch tree reduce : 1.78 us    (1.0%)
   gen split merge   : 842.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.9%)
   LB compute        : 157.63 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4226738684890098e-19,-1.6770273505727303e-19,3.8919321675784267e-19)
    sum a = (2.346212354335121e-19,1.7111080089894938e-19,-5.717406784952838e-20)
    sum e = 7.857248885711244e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04012646125424094 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.9963e+04 | 2592 |      1 | 5.188e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2784.465851343061 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.636176229908552, dt = 0.04012646125424094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.8%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 139.98 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.318101259352211e-19,-1.5488215618176092e-19,3.8370621913672897e-19)
    sum a = (2.331686555077275e-19,1.0779193920651478e-19,-5.631337942986419e-20)
    sum e = 7.857246278820906e-10
    sum de = -7.651420666115506e-24
Info: cfl dt = 0.04012661131440951 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9585e+04 | 2592 |      1 | 4.350e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3320.741652541498 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.676302691162793, dt = 0.04012661131440951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.6%)
   patch tree reduce : 1.50 us    (1.0%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 140.58 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2266741699057699e-19,-1.5182541205626233e-19,3.8146382223881e-19)
    sum a = (-4.0757683799955417e-19,-1.4158470560709088e-19,1.8723728245501974e-20)
    sum e = 7.857243383160329e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.04012675717752829 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9018e+04 | 2592 |      1 | 4.392e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3289.148205659531 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.716429302477202, dt = 0.04012675717752829 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.7%)
   patch tree reduce : 1.49 us    (1.0%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 138.27 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.520345079788371e-19,-1.625024496272654e-19,3.8372063716250228e-19)
    sum a = (-2.4930478092764217e-20,6.263071170903454e-20,7.190867370558095e-21)
    sum e = 7.857240204259607e-10
    sum de = 7.444625512977249e-24
Info: cfl dt = 0.04012689883049289 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0441e+04 | 2592 |      1 | 4.288e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3368.501227615152 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.75655605965473, dt = 0.04012689883049289 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (2.3%)
   patch tree reduce : 1.18 us    (0.8%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 137.29 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4530728827729632e-19,-1.5589723678035077e-19,3.837777962160488e-19)
    sum a = (-1.2179323993116818e-20,-1.4399645916051656e-19,4.937713746436568e-20)
    sum e = 7.857236748134972e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.04012703626164138 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3928e+04 | 2592 |      1 | 4.806e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3005.522321740793 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 10.796682958485224, dt = 0.04012703626164138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (2.5%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 147.67 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4529414275760594e-19,-1.6581101261433242e-19,3.866055564975877e-19)
    sum a = (-3.0746056003778658e-19,-1.9741705262422922e-19,-2.1476592845226428e-19)
    sum e = 7.857233021083028e-10
    sum de = -3.1019272970738538e-24
Info: cfl dt = 0.04012716946074784 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9359e+04 | 2592 |      1 | 4.367e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3308.1705408292137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.836809994746865, dt = 0.04012716946074784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.3%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 631.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.6%)
   LB compute        : 152.17 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.636518610051911e-19,-1.7481774758967937e-19,3.7268796850004987e-19)
    sum a = (5.553982069176315e-21,-5.13948740143971e-21,2.0641667803022586e-20)
    sum e = 7.857229029672077e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.04012729841901566 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6485e+04 | 2592 |      1 | 4.589e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3148.0212636237384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.876937164207613, dt = 0.0014743408876292108 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (3.0%)
   patch tree reduce : 1.86 us    (1.2%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 143.52 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.575884900480134e-19,-1.7095584038314633e-19,3.774415216085408e-19)
    sum a = (5.749850312562651e-20,-1.107207841008854e-19,9.587755127229955e-21)
    sum e = 7.856849778492459e-10
    sum de = -2.3781442610899546e-24
Info: cfl dt = 0.0401273030767437 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8088e+04 | 2592 |      1 | 5.390e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.47040847227733 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 303                                                     [SPH][rank=0]
Info: time since start : 123.709347124 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000652367 s
sph::RenderFieldGetter compute custom field took :  0.00054067 s
rho_t_ampl=-1.17776e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000274125, eps_t_phi=9.81437e-14 rad
vx_t_ampl=-6.74057e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.24s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 10.878411505095242, dt = 0.0401273030767437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.58 us   (5.7%)
   patch tree reduce : 2.04 us    (1.0%)
   gen split merge   : 812.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.7%)
   LB compute        : 178.27 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5520915098405858e-19,-1.7548857989137795e-19,3.7781810374662003e-19)
    sum a = (2.80058724243235e-19,-1.8825565239377538e-21,-8.178216027439577e-20)
    sum e = 7.857226428744179e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04012742764159417 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9220e+04 | 2592 |      1 | 4.377e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3300.4587608848583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.918538808171986, dt = 0.04012742764159417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (2.6%)
   patch tree reduce : 1.99 us    (1.3%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (1.1%)
   LB compute        : 132.00 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3914532592244093e-19,-1.733791347785658e-19,3.7270318188410714e-19)
    sum a = (1.9908889571047406e-19,5.131326652545998e-20,1.1362221087060104e-19)
    sum e = 7.857220884944175e-10
    sum de = -6.72084247699335e-25
Info: cfl dt = 0.04012754794045717 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9923e+04 | 2592 |      1 | 4.326e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3339.6705674927744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.958666235813581, dt = 0.04012754794045717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.7%)
   patch tree reduce : 1.89 us    (1.2%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 138.99 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3286176751044973e-19,-1.70245982319867e-19,3.811830999799111e-19)
    sum a = (3.1568965536395077e-19,6.677338616278225e-20,-1.6727032401745836e-19)
    sum e = 7.857216167149335e-10
    sum de = -2.5332406259436473e-24
Info: cfl dt = 0.04012766398065238 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9053e+04 | 2592 |      1 | 4.389e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3291.1942753406624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 10.998793783754039, dt = 0.04012766398065238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (2.8%)
   patch tree reduce : 2.05 us    (1.2%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 156.29 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1796460732135137e-19,-1.6724921462795567e-19,3.688351682938966e-19)
    sum a = (4.617363791238297e-20,-1.2931702164128973e-19,1.502603073808077e-19)
    sum e = 7.857211180231851e-10
    sum de = -2.6366382025127757e-24
Info: cfl dt = 0.040127775758878485 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8414e+04 | 2592 |      1 | 4.437e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3255.5844627984998 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.03892144773469, dt = 0.040127775758878485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (2.7%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 146.41 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2148267702848346e-19,-1.7638329682530294e-19,3.812356614541286e-19)
    sum a = (1.2356788508936653e-20,-7.128915459969486e-21,-1.230417615599504e-19)
    sum e = 7.857205965941931e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.040127883273423176 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7630e+04 | 2592 |      1 | 4.498e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3211.892101852482 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.079049223493568, dt = 0.040127883273423176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (2.7%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 153.46 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2169382693850984e-19,-1.742167508613358e-19,3.708147539400328e-19)
    sum a = (2.0076494947099471e-19,2.8446070177532796e-20,1.4526490127040586e-19)
    sum e = 7.857200531990028e-10
    sum de = -1.1890721305449773e-24
Info: cfl dt = 0.04012798652395266 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0249e+04 | 2592 |      1 | 4.302e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3357.858851668368 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.11917710676699, dt = 0.04012798652395266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.6%)
   patch tree reduce : 2.05 us    (1.3%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 138.35 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.098645024071488e-19,-1.7236241099001467e-19,3.8202723116438257e-19)
    sum a = (7.279331528535821e-20,-1.315229913269064e-19,-1.4538026597511058e-19)
    sum e = 7.857194886500323e-10
    sum de = 2.455692443516801e-24
Info: cfl dt = 0.0401280855115039 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9318e+04 | 2592 |      1 | 4.370e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3305.984115619169 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.159305093290943, dt = 0.0401280855115039 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.6%)
   patch tree reduce : 2.01 us    (1.3%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 138.32 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0952929165504467e-19,-1.8086304345728283e-19,3.7036189674241926e-19)
    sum a = (-6.154732319025682e-20,-5.648157393833021e-20,-2.713932836952841e-20)
    sum e = 7.857189037760223e-10
    sum de = 4.3943970041879595e-25
Info: cfl dt = 0.04012818023847463 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9840e+04 | 2592 |      1 | 4.332e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3335.070988526623 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.199433178802447, dt = 0.04012818023847463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (2.8%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (1.0%)
   LB compute        : 133.55 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1467699500629086e-19,-1.816102840921816e-19,3.716452361096099e-19)
    sum a = (3.8465762441941474e-19,2.20273837823261e-19,5.636986687889777e-20)
    sum e = 7.857182994239614e-10
    sum de = -8.594923552308803e-25
Info: cfl dt = 0.04012827070861327 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5066e+04 | 2592 |      1 | 4.707e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3069.015071855121 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.239561359040922, dt = 0.0014638628908301143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.6%)
   patch tree reduce : 1.86 us    (1.2%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 136.74 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0514895801572315e-19,-1.757321828031399e-19,3.7340328988516417e-19)
    sum a = (2.1615178026855893e-19,-1.3234103034177818e-19,-3.3014261364157116e-19)
    sum e = 7.856841254688553e-10
    sum de = -8.788794008375919e-25
Info: cfl dt = 0.04012827392901781 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9853e+04 | 2592 |      1 | 4.331e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.69065185802322 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 313                                                     [SPH][rank=0]
Info: time since start : 124.33171100700001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008501130000000001 s
sph::RenderFieldGetter compute custom field took :  0.000668851 s
rho_t_ampl=-1.99273e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00025483, eps_t_phi=6.28319 rad
vx_t_ampl=-6.3523e-07, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.60s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 11.241025221931752, dt = 0.04012827392901781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.56 us   (5.4%)
   patch tree reduce : 1.89 us    (0.9%)
   gen split merge   : 811.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.6%)
   LB compute        : 187.15 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.662085025693421e-20,-1.8131122351922595e-19,3.5987233601077713e-19)
    sum a = (6.700271386175545e-20,-1.3740019399643802e-19,2.805330536419772e-20)
    sum e = 7.857179129141936e-10
    sum de = 8.199104704505108e-25
Info: cfl dt = 0.04012836000563624 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8657e+04 | 2592 |      1 | 4.419e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3269.184755931177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.281153495860769, dt = 0.04012836000563624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (1.7%)
   patch tree reduce : 1.17 us    (0.7%)
   gen split merge   : 712.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 610.00 ns  (0.4%)
   LB compute        : 145.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.691863029708799e-20,-1.869190200596347e-19,3.68184961126839e-19)
    sum a = (3.112793335078356e-19,1.4586109464393894e-20,-1.8653525659781379e-19)
    sum e = 7.857171293154507e-10
    sum de = 6.526972020926234e-25
Info: cfl dt = 0.040128441823327206 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0924e+04 | 2592 |      1 | 4.254e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3395.525502722292 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.321281855866406, dt = 0.040128441823327206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (1.6%)
   patch tree reduce : 470.00 ns  (0.3%)
   gen split merge   : 441.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.3%)
   LB compute        : 128.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 1.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.954518283631841e-20,-1.8328880263764422e-19,3.563940484007282e-19)
    sum a = (-7.473227943968603e-20,9.554352421049415e-20,2.435862858614261e-20)
    sum e = 7.857164742543688e-10
    sum de = 1.2536956159006826e-24
Info: cfl dt = 0.04012851940394839 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1023e+04 | 2592 |      1 | 4.248e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3401.0710480596376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.361410297689734, dt = 0.04012851940394839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (1.6%)
   patch tree reduce : 691.00 ns  (0.5%)
   gen split merge   : 461.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 300.00 ns  (0.2%)
   LB compute        : 122.20 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 1.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.029164518318619e-20,-1.7782807159877137e-19,3.616029456018183e-19)
    sum a = (5.63088335936491e-20,-1.1092597744730208e-19,-6.046046005597567e-20)
    sum e = 7.857158000880269e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.040128592756383495 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0776e+04 | 2592 |      1 | 4.265e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3387.2925803300423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.401538817093682, dt = 0.040128592756383495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (2.2%)
   patch tree reduce : 851.00 ns  (0.6%)
   gen split merge   : 461.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.7%)
   LB compute        : 127.50 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.532838990509534e-20,-1.864272954637172e-19,3.5747492020019983e-19)
    sum a = (-5.885906441357858e-20,-1.5828198039878764e-19,-3.9657227581754455e-20)
    sum e = 7.857151108972879e-10
    sum de = 3.825710333057753e-24
Info: cfl dt = 0.0401286618910211 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0537e+04 | 2592 |      1 | 4.282e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3373.9968203185263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.441667409850066, dt = 0.0401286618910211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (2.0%)
   patch tree reduce : 641.00 ns  (0.5%)
   gen split merge   : 431.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.4%)
   LB compute        : 130.48 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 1.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.018483783570203e-20,-1.937234696893563e-19,3.563009309450151e-19)
    sum a = (1.4818944346940733e-19,-1.8750999076173003e-19,-6.670833763165894e-20)
    sum e = 7.857144075754685e-10
    sum de = -5.169878828456423e-26
Info: cfl dt = 0.04012872681952967 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0952e+04 | 2592 |      1 | 4.253e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3397.1008080664565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.481796071741087, dt = 0.04012872681952967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (1.7%)
   patch tree reduce : 321.00 ns  (0.2%)
   gen split merge   : 441.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 530.00 ns  (0.4%)
   LB compute        : 133.30 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 1.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.991818695753233e-20,-2.0183630932575892e-19,3.530812478631301e-19)
    sum a = (-1.5183075242363654e-20,5.273915745179509e-20,-3.12218618038483e-20)
    sum e = 7.857136910394726e-10
    sum de = -1.1890721305449773e-24
Info: cfl dt = 0.040128787554846196 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0467e+04 | 2592 |      1 | 4.287e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3370.1068918760575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.521924798560617, dt = 0.040128787554846196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (1.4%)
   patch tree reduce : 521.00 ns  (0.3%)
   gen split merge   : 450.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 550.00 ns  (0.4%)
   LB compute        : 142.30 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 1.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (52.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.380268802603315e-20,-1.9489752891670142e-19,3.525403659508591e-19)
    sum a = (-2.0060063047486524e-20,-2.6494512512642236e-21,6.313904341135703e-20)
    sum e = 7.857129622109195e-10
    sum de = 1.9128551665288765e-24
Info: cfl dt = 0.04012884411116338 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7808e+04 | 2592 |      1 | 4.484e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3221.8698033702212 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.562053586115463, dt = 0.04012884411116338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.5%)
   patch tree reduce : 1.09 us    (0.7%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (1.0%)
   LB compute        : 132.12 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.474916544373894e-20,-1.9611472188053054e-19,3.569673571407001e-19)
    sum a = (-9.237356686414666e-20,1.649391719656498e-20,5.2724903034356873e-20)
    sum e = 7.857122220152695e-10
    sum de = -6.927637630131607e-24
Info: cfl dt = 0.04012889650391627 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9763e+04 | 2592 |      1 | 4.337e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3330.862547357081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.602182430226627, dt = 0.0014565085416329282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (2.4%)
   patch tree reduce : 1.12 us    (0.8%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (1.0%)
   LB compute        : 129.25 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.634963246604005e-20,-1.9570597837765845e-19,3.5683519770443813e-19)
    sum a = (-8.634634608611746e-20,5.880990992637703e-20,9.038257280268216e-20)
    sum e = 7.856830116680843e-10
    sum de = -8.788794008375919e-25
Info: cfl dt = 0.040128898327995294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0496e+04 | 2592 |      1 | 4.285e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 122.37884153513946 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 323                                                     [SPH][rank=0]
Info: time since start : 125.194970271 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007904030000000001 s
sph::RenderFieldGetter compute custom field took :  0.000688901 s
rho_t_ampl=-1.48986e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000236804, eps_t_phi=3.59268e-13 rad
vx_t_ampl=5.0724e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 11.97s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 11.60363893876826, dt = 0.040128898327995294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.24 us   (5.6%)
   patch tree reduce : 1.87 us    (0.9%)
   gen split merge   : 932.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.7%)
   LB compute        : 175.95 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 871.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.993342977162394e-20,-1.9331308299652295e-19,3.6048957513788553e-19)
    sum a = (-1.284711639338701e-19,7.449766272302491e-20,-1.769340394116175e-19)
    sum e = 7.857117534213801e-10
    sum de = -2.5849394142282115e-24
Info: cfl dt = 0.04012894643860528 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9476e+04 | 2592 |      1 | 4.358e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3314.8852244616246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.643767837096256, dt = 0.04012894643860528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (2.1%)
   patch tree reduce : 1.14 us    (0.7%)
   gen split merge   : 661.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.8%)
   LB compute        : 138.80 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.588999338131746e-20,-1.9001150356679144e-19,3.480258379707295e-19)
    sum a = (3.9797403586574754e-19,7.044383606398129e-20,4.616553035982515e-20)
    sum e = 7.857108269314597e-10
    sum de = 9.305781891221561e-25
Info: cfl dt = 0.04012899040526116 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9536e+04 | 2592 |      1 | 4.354e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3318.196324075186 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.68389678353486, dt = 0.04012899040526116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (2.3%)
   patch tree reduce : 1.00 us    (0.6%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 143.61 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.927031600834223e-20,-1.872628575590356e-19,3.54354789438464e-19)
    sum a = (-1.8621943193361344e-19,-8.8135523205536e-20,9.569576826276965e-20)
    sum e = 7.857100608324385e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04012903026290629 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0459e+04 | 2592 |      1 | 4.287e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3369.646371569893 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.724025773940122, dt = 0.04012903026290629 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (2.0%)
   patch tree reduce : 861.00 ns  (0.6%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.5%)
   LB compute        : 129.09 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.57 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.872239877014969e-20,-1.939937744379893e-19,3.591887670399491e-19)
    sum a = (-1.6003355671042e-19,-7.583702942796059e-20,-6.019168989343136e-20)
    sum e = 7.8570928416963e-10
    sum de = 8.271806125530277e-24
Info: cfl dt = 0.040129066031632785 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0860e+04 | 2592 |      1 | 4.259e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3392.0369298892033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.764154804203029, dt = 0.040129066031632785 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (1.6%)
   patch tree reduce : 712.00 ns  (0.5%)
   gen split merge   : 470.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.6%)
   LB compute        : 125.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 1.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.43716858570811e-20,-1.9677898142238392e-19,3.536455244786736e-19)
    sum a = (-3.7178816064255415e-19,-2.6561549528094435e-20,1.6036566340248239e-19)
    sum e = 7.857085008390239e-10
    sum de = -4.8596860987490376e-24
Info: cfl dt = 0.040129097732920956 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1407e+04 | 2592 |      1 | 4.221e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3422.5093796484643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.804283870234661, dt = 0.040129097732920956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (1.9%)
   patch tree reduce : 420.00 ns  (0.3%)
   gen split merge   : 421.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.6%)
   LB compute        : 122.88 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 1.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (57.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1359700840422989e-19,-1.9685497895809382e-19,3.6450623415545446e-19)
    sum a = (1.608814427304481e-19,2.7990739671773705e-20,1.227961975653955e-19)
    sum e = 7.857077117375733e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.04012912538940415 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1500e+04 | 2592 |      1 | 4.215e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3427.6868894770682 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.844412967967582, dt = 0.04012912538940415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (1.7%)
   patch tree reduce : 320.00 ns  (0.2%)
   gen split merge   : 451.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 431.00 ns  (0.3%)
   LB compute        : 124.78 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 1.35 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.641910054885438e-20,-1.9464653165011365e-19,3.686801237816718e-19)
    sum a = (-1.0252848082494832e-19,-7.84163626825952e-21,2.332849987416803e-19)
    sum e = 7.857069177836695e-10
    sum de = 3.2053248736429822e-24
Info: cfl dt = 0.040129149024855516 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1315e+04 | 2592 |      1 | 4.227e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3417.404545980784 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.884542093356986, dt = 0.040129149024855516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (1.7%)
   patch tree reduce : 470.00 ns  (0.4%)
   gen split merge   : 511.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.3%)
   LB compute        : 125.37 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 1.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0538105859775605e-19,-1.9566613102109706e-19,3.802585617397337e-19)
    sum a = (-2.5100712572754352e-19,2.4950288801735076e-19,9.599229554933874e-20)
    sum e = 7.85706119886533e-10
    sum de = 2.7917345673664684e-24
Info: cfl dt = 0.040129168664172925 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1039e+04 | 2592 |      1 | 4.246e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3402.0148982126734 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 11.92467124238184, dt = 0.040129168664172925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (1.4%)
   patch tree reduce : 290.00 ns  (0.2%)
   gen split merge   : 451.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 330.00 ns  (0.2%)
   LB compute        : 141.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 1.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.185857331267208e-19,-1.8049620129842375e-19,3.813559330850889e-19)
    sum a = (-5.14712823475973e-20,-3.7325778866418717e-20,-1.7637410905200085e-19)
    sum e = 7.857053189536295e-10
    sum de = -6.617444900424222e-24
Info: cfl dt = 0.04012918433336272 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3902e+04 | 2592 |      1 | 5.904e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.892778151643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 11.964800411046014, dt = 0.0014522445587523691 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (1.4%)
   patch tree reduce : 391.00 ns  (0.3%)
   gen split merge   : 461.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 410.00 ns  (0.3%)
   LB compute        : 139.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 1.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.149115603732657e-19,-1.8630611020407172e-19,3.756348760505481e-19)
    sum a = (3.320032452996852e-19,-1.8694775020911419e-19,-4.0227914813166576e-20)
    sum e = 7.856817558585023e-10
    sum de = 7.134432783269864e-24
Info: cfl dt = 0.040129184826883386 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1261e+04 | 2592 |      1 | 5.056e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.39357310270083 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 333                                                     [SPH][rank=0]
Info: time since start : 125.816822392 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008040440000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007504530000000001 s
rho_t_ampl=2.28577e-06, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000220395, eps_t_phi=7.93143e-13 rad
vx_t_ampl=1.02626e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12.33s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 11.966252655604766, dt = 0.040129184826883386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.28 us   (5.4%)
   patch tree reduce : 1.94 us    (0.9%)
   gen split merge   : 1.04 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.6%)
   LB compute        : 184.67 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0151627580879075e-19,-1.9391079334494392e-19,3.7411942140667453e-19)
    sum a = (-1.4627677035446023e-19,1.151015927248051e-19,5.694406789187572e-20)
    sum e = 7.857048157277553e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.04012919642704949 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9140e+04 | 2592 |      1 | 4.383e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3296.1622361529635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.006381840431649, dt = 0.04012919642704949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (2.2%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.7%)
   LB compute        : 137.68 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.169458295453486e-19,-1.8324156092625699e-19,3.783542573194634e-19)
    sum a = (2.0807385841883385e-19,-1.3921469934861935e-19,-2.620272074790956e-22)
    sum e = 7.8570383725021e-10
    sum de = -8.581998855237662e-24
Info: cfl dt = 0.04012920409656573 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9639e+04 | 2592 |      1 | 4.346e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3324.0037910015535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.046511036858698, dt = 0.04012920409656573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.4%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 152.16 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0105618261962822e-19,-1.9391818769976975e-19,3.771959250626555e-19)
    sum a = (-2.181301809819578e-19,9.454348906998741e-20,4.5655691293539766e-20)
    sum e = 7.857030350684511e-10
    sum de = 7.34122793640812e-24
Info: cfl dt = 0.04012920788175288 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9234e+04 | 2592 |      1 | 4.376e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3301.3893804810086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.086640240955264, dt = 0.04012920788175288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (2.0%)
   patch tree reduce : 1.09 us    (0.6%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.6%)
   LB compute        : 164.18 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.185265782881142e-19,-1.8543645191705648e-19,3.7994937253826456e-19)
    sum a = (2.496071278805204e-19,1.177361654044667e-19,1.0936250633922695e-19)
    sum e = 7.857022308784787e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.040129207812706784 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8862e+04 | 2592 |      1 | 4.404e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3280.6702642003693 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.126769448837017, dt = 0.040129207812706784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (2.3%)
   patch tree reduce : 1.00 us    (0.7%)
   gen split merge   : 541.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.8%)
   LB compute        : 127.70 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.70 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.976134893012793e-20,-1.8024315004438436e-19,3.8561625529429745e-19)
    sum a = (2.5920335725448185e-19,-2.3580212416913387e-20,1.462819704912066e-19)
    sum e = 7.857014280926548e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.040129203920788226 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0511e+04 | 2592 |      1 | 4.283e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3372.5986411602244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.166898656649723, dt = 0.040129203920788226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (2.0%)
   patch tree reduce : 751.00 ns  (0.5%)
   gen split merge   : 781.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 741.00 ns  (0.5%)
   LB compute        : 128.10 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 1.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.850878407518136e-20,-1.840290597152075e-19,3.922272087426789e-19)
    sum a = (-1.0195665071841774e-19,7.312177355371515e-20,2.0099768364376584e-19)
    sum e = 7.857006275287743e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040129196238304646 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9202e+04 | 2592 |      1 | 4.378e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3299.6117079026412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.207027860570511, dt = 0.040129196238304646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (2.1%)
   patch tree reduce : 1.16 us    (0.8%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 130.66 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.979421272935383e-20,-1.7916110945487175e-19,4.013909332384414e-19)
    sum a = (2.6786625473042786e-19,7.094951493714818e-20,4.727726193217214e-20)
    sum e = 7.856998300151344e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.04012918479858957 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8697e+04 | 2592 |      1 | 4.416e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3271.4708377999705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.247157056808815, dt = 0.04012918479858957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (2.1%)
   patch tree reduce : 1.00 us    (0.7%)
   gen split merge   : 631.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 135.52 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.202147010798963e-20,-1.7636645412819968e-19,4.002037927349784e-19)
    sum a = (-6.64834658339863e-21,2.941263815999973e-20,-1.079429360158453e-19)
    sum e = 7.856990363650507e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.04012916963595191 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8792e+04 | 2592 |      1 | 4.409e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3276.744045746571 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.287286241607404, dt = 0.04012916963595191 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (2.7%)
   patch tree reduce : 1.49 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 134.58 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.777263497252131e-20,-1.7600289834926322e-19,3.927577023406247e-19)
    sum a = (3.668618771385924e-19,-1.0245457578895478e-19,2.0023624510859436e-19)
    sum e = 7.85698247376316e-10
    sum de = 1.6543612251060553e-23
Info: cfl dt = 0.04012915078564288 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8984e+04 | 2592 |      1 | 4.394e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3287.4852238268754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.327415411243356, dt = 0.0014509611979196535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.7%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (1.1%)
   LB compute        : 135.73 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.943837548883425e-20,-1.788012508533482e-19,3.992317246814705e-19)
    sum a = (-1.4642137107105415e-19,-2.0221727264834785e-19,2.666260007607964e-19)
    sum e = 7.85680477965574e-10
    sum de = -6.4106497472859645e-24
Info: cfl dt = 0.040129150036001454 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9400e+04 | 2592 |      1 | 4.364e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.70434720887842 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 343                                                     [SPH][rank=0]
Info: time since start : 126.43523093900001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008208190000000001 s
sph::RenderFieldGetter compute custom field took :  0.000679598 s
rho_t_ampl=3.03594e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000205885, eps_t_phi=1.07292e-12 rad
vx_t_ampl=1.48366e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 12.69s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 12.328866372441276, dt = 0.040129150036001454 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.60 us   (5.0%)
   patch tree reduce : 1.89 us    (0.8%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 203.09 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.60177080938585e-20,-1.8697694250577033e-19,4.0997936394921364e-19)
    sum a = (3.786238308815404e-20,9.141871944757553e-20,9.78920924330658e-20)
    sum e = 7.856977550174641e-10
    sum de = 7.651420666115506e-24
Info: cfl dt = 0.04012912741980515 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6420e+04 | 2592 |      1 | 4.594e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3144.5413497314607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.368995522477277, dt = 0.04012912741980515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.1%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 165.91 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.058860846174059e-20,-1.774279548431961e-19,4.105221140381616e-19)
    sum a = (-1.6099975240766133e-20,8.047406014904814e-20,4.053584489195e-20)
    sum e = 7.856968104341845e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.0401291011730278 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6955e+04 | 2592 |      1 | 4.551e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3174.3924731436236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.409124649897082, dt = 0.0401291011730278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (2.2%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 149.82 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.198860630876373e-20,-1.7441886322657507e-19,4.109979529759787e-19)
    sum a = (-2.928394557621857e-19,-7.495231284544067e-20,9.509652220558092e-20)
    sum e = 7.856960423461829e-10
    sum de = -1.2614504341433672e-23
Info: cfl dt = 0.04012907135147876 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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 | 2592 |      1 | 6.050e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2387.794297972952 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.44925375107011, dt = 0.04012907135147876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.86 us    (2.3%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 150.64 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.960360269384364e-20,-1.805471401872239e-19,4.159088235708056e-19)
    sum a = (5.51125913018265e-20,-9.651823111823811e-20,-4.2782096050306974e-20)
    sum e = 7.856952799140924e-10
    sum de = 1.2614504341433672e-23
Info: cfl dt = 0.04012903799386071 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2849e+04 | 2592 |      1 | 6.049e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2388.203680150576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.489382822421588, dt = 0.04012903799386071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.4%)
   patch tree reduce : 1.74 us    (0.9%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 169.68 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.99745095206563e-20,-1.8484284954353874e-19,4.114255487580728e-19)
    sum a = (-5.011729381949042e-21,2.7390707033790246e-19,-4.862750781021676e-20)
    sum e = 7.856945259186932e-10
    sum de = -1.3648480107124957e-23
Info: cfl dt = 0.04012900113994779 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3817e+04 | 2592 |      1 | 5.915e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2442.1560023438715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.529511860415449, dt = 0.04012900113994779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (2.8%)
   patch tree reduce : 1.40 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (1.0%)
   LB compute        : 152.87 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.184774607653233e-20,-1.6643008443225023e-19,4.0935689006640544e-19)
    sum a = (1.4789695565629686e-19,8.845794788575381e-20,-2.276417616373323e-19)
    sum e = 7.85693781026808e-10
    sum de = -2.005912985441092e-23
Info: cfl dt = 0.040128960830352396 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3244e+04 | 2592 |      1 | 5.994e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2410.204864401447 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.569640861555396, dt = 0.040128960830352396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (3.2%)
   patch tree reduce : 1.85 us    (1.1%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.9%)
   LB compute        : 155.29 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.302052960445685e-20,-1.6659933299826358e-19,3.9663003113239814e-19)
    sum a = (-3.984899975135941e-19,-1.5291429499147313e-19,1.4188791929083777e-19)
    sum e = 7.85693045906293e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.040128917106507594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0040e+04 | 2592 |      1 | 5.180e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2788.9699469116827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.609769822385749, dt = 0.040128917106507594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (2.8%)
   patch tree reduce : 1.73 us    (0.9%)
   gen split merge   : 1.15 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.7%)
   LB compute        : 168.54 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 722.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1005429084767837e-19,-1.775857010794804e-19,4.097382607298141e-19)
    sum a = (-1.4131433667135003e-22,1.7272660864002975e-20,-1.2218817042589028e-19)
    sum e = 7.856923212036914e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.040128870010648104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7061e+04 | 2592 |      1 | 4.543e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3180.253261333014 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.649898739492256, dt = 0.040128870010648104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (2.2%)
   patch tree reduce : 1.45 us    (0.9%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 140.99 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 892.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0192378691919185e-19,-1.7346704544149506e-19,3.995364437649162e-19)
    sum a = (-3.1614974855311333e-19,-1.268900172310358e-19,7.119984133762144e-20)
    sum e = 7.856916075439586e-10
    sum de = 1.4475660719677984e-24
Info: cfl dt = 0.04012881958579081 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8133e+04 | 2592 |      1 | 4.459e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3240.0198629910624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.690027609502904, dt = 0.0014524797748798335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (2.4%)
   patch tree reduce : 2.16 us    (1.3%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 144.43 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.085688471226679e-19,-1.765488482139034e-19,4.035200812872668e-19)
    sum a = (-4.0093835055592335e-21,1.5988456559564825e-19,-5.360063386187648e-20)
    sum e = 7.856792865962889e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.04012881769931513 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8946e+04 | 2592 |      1 | 4.397e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 118.91428111193974 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 353                                                     [SPH][rank=0]
Info: time since start : 127.13592673800001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007014300000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007216400000000001 s
rho_t_ampl=6.786e-05, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000193491, eps_t_phi=1.04272e-12 rad
vx_t_ampl=1.87173e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.05s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 12.691480089277784, dt = 0.04012881769931513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.13 us   (5.8%)
   patch tree reduce : 1.90 us    (0.9%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 182.20 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (76.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0877917543771363e-19,-1.6992063070753063e-19,4.0127851613939817e-19)
    sum a = (-9.551205969021966e-20,1.788138572013325e-20,1.4785552801751806e-20)
    sum e = 7.856911653762993e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.04012876388835605 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9357e+04 | 2592 |      1 | 6.586e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2193.54893335312 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 12.7316089069771, dt = 0.04012876388835605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.6%)
   patch tree reduce : 2.06 us    (1.3%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 140.35 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.139059281169533e-19,-1.7205143728983961e-19,4.032439705056663e-19)
    sum a = (-2.4836816264970416e-19,-4.2168503593364273e-20,5.409676570861732e-21)
    sum e = 7.856903276929366e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.04012870682053807 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.1902e+04 | 2592 |      1 | 6.186e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2335.372188461582 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.771737670865456, dt = 0.04012870682053807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.7%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 137.25 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 732.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2710402988607287e-19,-1.749450948116797e-19,4.0327293266896576e-19)
    sum a = (4.435922755712129e-19,-2.2075512559543993e-20,6.869678783363945e-20)
    sum e = 7.856896526920484e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.040128646559120705 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4446e+04 | 2592 |      1 | 4.761e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3034.5155561205397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.811866377685993, dt = 0.040128646559120705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (2.2%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 852.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.7%)
   LB compute        : 134.78 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.551534607014226e-20,-1.754253170778681e-19,4.072994567544027e-19)
    sum a = (2.128588275861242e-19,-1.067592970152136e-19,-2.3375399919639085e-21)
    sum e = 7.856889894808854e-10
    sum de = 1.7784383169890095e-23
Info: cfl dt = 0.04012858314988031 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8498e+04 | 2592 |      1 | 4.431e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3260.3336439565815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 12.851995024245113, dt = 0.04012858314988031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.4%)
   patch tree reduce : 1.08 us    (0.7%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 141.08 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.115103353294335e-20,-1.8140365295454878e-19,4.0578039886902523e-19)
    sum a = (-4.706556142337377e-19,4.558273139739549e-21,4.766493774236323e-20)
    sum e = 7.856883401327027e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.040128516639475476 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2818e+04 | 2592 |      1 | 4.907e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2943.780331058992 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.892123607394993, dt = 0.040128516639475476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.3%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 152.69 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.237979316839478e-19,-1.789902176988971e-19,4.0869638640910006e-19)
    sum a = (1.0723457687409655e-20,-6.359124610336235e-20,1.2494352787165412e-19)
    sum e = 7.856877051152989e-10
    sum de = -2.7090165061111656e-23
Info: cfl dt = 0.04012844707522497 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.8693e+04 | 2592 |      1 | 5.323e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2713.88249139203 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 12.932252124034468, dt = 0.04012844707522497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (2.1%)
   patch tree reduce : 1.68 us    (0.9%)
   gen split merge   : 992.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 160.04 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.140899653926183e-19,-1.829104581490561e-19,4.152607137496116e-19)
    sum a = (4.089209673878933e-19,-1.3447536721501962e-19,1.0671138843040712e-19)
    sum e = 7.856870848898624e-10
    sum de = -5.583469134732937e-24
Info: cfl dt = 0.0401283745050898 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8853e+04 | 2592 |      1 | 4.404e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3280.131114749154 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 12.972380571109692, dt = 0.0401283745050898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (2.2%)
   patch tree reduce : 1.68 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 148.71 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (58.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.950127081180341e-20,-1.8974243121062942e-19,4.1917705458715705e-19)
    sum a = (2.5006722106968294e-19,1.0053652379436874e-19,1.079558821071643e-19)
    sum e = 7.856864798927723e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.040128298977653104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9179e+04 | 2592 |      1 | 4.380e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3298.276403788858 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.012508945614782, dt = 0.040128298977653104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.6%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.8%)
   LB compute        : 132.71 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.302052960445685e-20,-1.809858719068896e-19,4.235341102549397e-19)
    sum a = (-1.1877962954215358e-19,2.044297637441234e-19,1.3076927067588808e-19)
    sum e = 7.856858905356462e-10
    sum de = -1.075334796318936e-23
Info: cfl dt = 0.04012822054209981 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8822e+04 | 2592 |      1 | 4.407e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3278.3677834618584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.052637244592434, dt = 0.00145656152185758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (2.3%)
   patch tree reduce : 1.30 us    (0.9%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 131.56 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.101957833603977e-20,-1.7860037088057992e-19,4.241823149814729e-19)
    sum a = (-1.0195007795857257e-19,-6.590105769207988e-20,-4.2130876699672825e-20)
    sum e = 7.856782697251029e-10
    sum de = -1.0339757656912846e-23
Info: cfl dt = 0.040128217641535006 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9324e+04 | 2592 |      1 | 4.369e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.01214120496374 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 363                                                     [SPH][rank=0]
Info: time since start : 127.81364469300001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000836923 s
sph::RenderFieldGetter compute custom field took :  0.000704264 s
rho_t_ampl=0.000113179, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000183363, eps_t_phi=1.07114e-12 rad
vx_t_ampl=2.18504e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.42s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 13.054093806114292, dt = 0.040128217641535006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.55 us   (5.0%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 203.53 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.487121560531471e-20,-1.8144308951361987e-19,4.2236575814087894e-19)
    sum a = (-6.08966199655841e-20,-1.225748335061953e-19,-2.0472912895717453e-20)
    sum e = 7.856855286067848e-10
    sum de = -2.212708138579349e-23
Info: cfl dt = 0.040128136261824036 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8180e+04 | 2592 |      1 | 4.455e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3242.583009574853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.094222023755826, dt = 0.040128136261824036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.6%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 139.58 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.581769302302049e-20,-1.8750687126828788e-19,4.2197876604517025e-19)
    sum a = (-9.959045717415328e-20,-3.462420768356967e-20,1.3425952387700247e-19)
    sum e = 7.856848523252785e-10
    sum de = 8.892191584945048e-24
Info: cfl dt = 0.04012805205838615 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3426e+04 | 2592 |      1 | 4.852e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2977.6363603988398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.13435016001765, dt = 0.04012805205838615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (2.2%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 681.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (1.0%)
   LB compute        : 149.43 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0022144211929048e-19,-1.871289375771901e-19,4.304709013620821e-19)
    sum a = (1.442720786016806e-20,-1.7435986243702732e-19,1.6143234110643396e-19)
    sum e = 7.856843137722995e-10
    sum de = -1.5716431638507526e-23
Info: cfl dt = 0.04012796509983496 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4828e+04 | 2592 |      1 | 4.727e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3055.760078110458 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.174478212076036, dt = 0.04012796509983496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (2.5%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 138.63 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 682.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.801299481131031e-20,-1.9692686851890045e-19,4.374940488241666e-19)
    sum a = (-1.6031947176368531e-19,2.6681168622308063e-20,3.352602397806043e-20)
    sum e = 7.856837912025794e-10
    sum de = -1.0132962503774589e-23
Info: cfl dt = 0.04012787543739635 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7385e+04 | 2592 |      1 | 4.517e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3198.2711961335826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.21460617717587, dt = 0.04012787543739635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (2.7%)
   patch tree reduce : 1.91 us    (1.2%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 141.16 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0728715895285798e-19,-1.9181654773927372e-19,4.362730668233918e-19)
    sum a = (2.489629974156928e-19,3.4550199948203546e-20,1.3819760243868974e-20)
    sum e = 7.856832859770283e-10
    sum de = -2.2333876538931747e-23
Info: cfl dt = 0.040127783122978794 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3773e+04 | 2592 |      1 | 4.820e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2996.934478629205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.254734052613266, dt = 0.040127783122978794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.3%)
   patch tree reduce : 1.97 us    (1.1%)
   gen split merge   : 981.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.6%)
   LB compute        : 162.63 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (55.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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.999422780019184e-20,-1.902793435304825e-19,4.364322379170248e-19)
    sum a = (-3.4319994169594775e-19,-1.419866324391079e-20,-7.17970679743845e-20)
    sum e = 7.856827983418901e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.040127688208967456 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0476e+04 | 2592 |      1 | 5.135e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2813.175498540135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.294861835736244, dt = 0.040127688208967456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (3.2%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 1.22 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (1.0%)
   LB compute        : 146.54 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.148458327748139e-19,-1.918280500690028e-19,4.3183338080184457e-19)
    sum a = (3.4429266302020877e-19,-1.4179828178979448e-19,2.2309798480421322e-20)
    sum e = 7.856823285314427e-10
    sum de = 2.0265925007549178e-23
Info: cfl dt = 0.040127590748205696 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0821e+04 | 2592 |      1 | 5.100e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2832.421847104775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.334989523945211, dt = 0.040127590748205696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.71 us    (2.9%)
   patch tree reduce : 2.16 us    (1.4%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 141.24 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (50.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.751629733855933e-20,-2.0008343643454772e-19,4.346167647626521e-19)
    sum a = (1.6136618376903007e-19,2.3962972978522486e-20,6.438790043428388e-20)
    sum e = 7.85681876754606e-10
    sum de = 1.1994118882018901e-23
Info: cfl dt = 0.040127490793974624 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7637e+04 | 2592 |      1 | 4.497e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3212.2660368513184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.375117114693417, dt = 0.040127490793974624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.5%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 141.93 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.50778034359979e-20,-1.9579060266066514e-19,4.380447360718826e-19)
    sum a = (-3.9549939178403766e-20,7.330646553788036e-20,1.2765227880375528e-19)
    sum e = 7.856814431950458e-10
    sum de = 1.2821299494571929e-23
Info: cfl dt = 0.04012738839997275 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8347e+04 | 2592 |      1 | 4.442e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3251.8541420728407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.415244605487391, dt = 0.0014629174634066544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (2.1%)
   patch tree reduce : 711.00 ns  (0.5%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.6%)
   LB compute        : 133.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 1.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.894258622496318e-20,-1.9468802219663633e-19,4.395008012001001e-19)
    sum a = (4.8345935041214653e-20,1.3455709024075088e-19,-6.5854077743640916e-21)
    sum e = 7.856774885621069e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.04012738462210307 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1226e+04 | 2592 |      1 | 4.233e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.40079062461812 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 373                                                     [SPH][rank=0]
Info: time since start : 128.460956772 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000783543 s
sph::RenderFieldGetter compute custom field took :  0.000684735 s
rho_t_ampl=0.000164611, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000175584, eps_t_phi=1.18749e-12 rad
vx_t_ampl=2.42039e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 13.78s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 13.416707522950798, dt = 0.04012738462210307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.30 us   (5.4%)
   patch tree reduce : 2.42 us    (1.2%)
   gen split merge   : 971.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 180.53 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (74.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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.636606436565299e-20,-1.8922482637282157e-19,4.391383566814701e-19)
    sum a = (3.119776892413859e-19,-1.0404198715351654e-19,1.307489120769654e-19)
    sum e = 7.856811804599532e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.040127279772860104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7741e+04 | 2592 |      1 | 4.489e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3218.0731180636303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.456834907572901, dt = 0.040127279772860104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.5%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 1.14 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 141.19 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.935576188632956e-20,-1.9820609190376845e-19,4.471403883936166e-19)
    sum a = (-2.817577826632138e-20,3.849318830938921e-20,1.48714059943879e-19)
    sum e = 7.856806984627795e-10
    sum de = -1.2821299494571929e-23
Info: cfl dt = 0.04012717257754567 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8106e+04 | 2592 |      1 | 4.461e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3238.3854809826867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.496962187345762, dt = 0.04012717257754567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (2.1%)
   patch tree reduce : 731.00 ns  (0.5%)
   gen split merge   : 701.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.6%)
   LB compute        : 137.00 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (56.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.696701778704692e-20,-1.9379700244012426e-19,4.534683093990261e-19)
    sum a = (3.1061384157351123e-19,-2.4393321861901272e-20,-7.354402937771598e-20)
    sum e = 7.856803217205686e-10
    sum de = -2.274746684520826e-23
Info: cfl dt = 0.04012706310802618 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8425e+04 | 2592 |      1 | 4.436e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3256.162323315747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.537089359923307, dt = 0.04012706310802618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (1.6%)
   patch tree reduce : 421.00 ns  (0.3%)
   gen split merge   : 430.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.2%)
   LB compute        : 140.61 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.757737624376866e-20,-1.9604611869964646e-19,4.460579091374873e-19)
    sum a = (-1.5810445169585995e-19,1.0179842949753527e-19,7.24928730724519e-20)
    sum e = 7.856799630456458e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.040126951419314855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8770e+04 | 2592 |      1 | 4.410e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3275.3822769525896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.577216423031333, dt = 0.040126951419314855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (1.7%)
   patch tree reduce : 731.00 ns  (0.5%)
   gen split merge   : 501.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 491.00 ns  (0.4%)
   LB compute        : 128.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 1.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.343087299034058e-20,-1.8942529554809951e-19,4.518968431338479e-19)
    sum a = (-5.3771748293409975e-20,4.226497681648248e-20,2.1252730425778406e-20)
    sum e = 7.856796231449665e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.040126837566903786 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9496e+04 | 2592 |      1 | 4.357e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3315.8153050897176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.617343374450648, dt = 0.040126837566903786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (2.6%)
   patch tree reduce : 1.88 us    (1.2%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 138.27 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.364120130538631e-20,-1.889117986851949e-19,4.517215926381538e-19)
    sum a = (-1.625558533010075e-19,-9.088070310946722e-20,-6.791229764486662e-20)
    sum e = 7.85679302045427e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.04012672160657735 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9476e+04 | 2592 |      1 | 4.358e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3314.69187135614 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 13.657470212017552, dt = 0.04012672160657735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (2.1%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 150.26 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.293508372646951e-20,-1.9524465279602495e-19,4.472075394778722e-19)
    sum a = (2.0829075949372476e-19,-2.4408461033161854e-19,-9.093539988285e-21)
    sum e = 7.856789997588951e-10
    sum de = 3.7223127564886245e-24
Info: cfl dt = 0.0401266035943941 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9128e+04 | 2592 |      1 | 4.384e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3295.2848124815528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.69759693362413, dt = 0.0401266035943941 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (1.9%)
   patch tree reduce : 1.26 us    (0.7%)
   gen split merge   : 701.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.6%)
   LB compute        : 160.29 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.68 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.696327730268438e-20,-2.0810302504064683e-19,4.480227485603426e-19)
    sum a = (2.5763904041132923e-19,3.560082736712796e-20,6.427693980214743e-20)
    sum e = 7.856787162738396e-10
    sum de = -6.2038545941477076e-24
Info: cfl dt = 0.040126483586666525 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.7019e+04 | 2592 |      1 | 5.513e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2620.4277506343287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.737723537218525, dt = 0.040126483586666525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (2.6%)
   patch tree reduce : 1.86 us    (1.1%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 156.43 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.552667517207279e-20,-2.0106893961383424e-19,4.520740102093651e-19)
    sum a = (-2.1856233994177834e-19,1.2839017264116848e-19,8.85743827935175e-20)
    sum e = 7.856784515558143e-10
    sum de = -2.0679515313825692e-23
Info: cfl dt = 0.0401263616399409 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6120e+04 | 2592 |      1 | 5.620e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2570.2996955076933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 13.777850020805191, dt = 0.00147121898211644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (2.9%)
   patch tree reduce : 1.35 us    (0.8%)
   gen split merge   : 1.23 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (1.0%)
   LB compute        : 150.89 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.543839701860283e-20,-1.990170061496674e-19,4.526918079963573e-19)
    sum a = (-1.7798540703756534e-19,1.0800753086440529e-19,5.769755487690493e-20)
    sum e = 7.856769747947101e-10
    sum de = 1.737079286361358e-23
Info: cfl dt = 0.04012635713314005 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2398e+04 | 2592 |      1 | 4.947e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.06806516132615 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 383                                                     [SPH][rank=0]
Info: time since start : 129.112583279 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000699837 s
sph::RenderFieldGetter compute custom field took :  0.0006115550000000001 s
rho_t_ampl=0.000220404, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000170173, eps_t_phi=1.62625e-12 rad
vx_t_ampl=2.57677e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14.14s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 13.779321239787308, dt = 0.04012635713314005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.73 us   (6.0%)
   patch tree reduce : 2.19 us    (1.0%)
   gen split merge   : 961.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.6%)
   LB compute        : 182.02 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.301021636024912e-20,-1.9469870293138476e-19,4.549842874013958e-19)
    sum a = (4.9174924376687866e-20,3.480300729123306e-20,2.279396031858045e-19)
    sum e = 7.856782953647741e-10
    sum de = 0
Info: cfl dt = 0.04012623325162771 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7921e+04 | 2592 |      1 | 4.475e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3228.007585780348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.819447596920448, dt = 0.04012623325162771 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.51 us    (2.8%)
   patch tree reduce : 1.82 us    (1.1%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 144.41 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.605623644404967e-20,-1.9476771690975914e-19,4.675462417008427e-19)
    sum a = (3.424087457295843e-19,-2.2114307247536435e-19,1.0052824605391827e-19)
    sum e = 7.856780183067715e-10
    sum de = -1.6957202557337067e-23
Info: cfl dt = 0.04012610753113251 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8227e+04 | 2592 |      1 | 4.452e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3245.026976720264 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.859573830172076, dt = 0.04012610753113251 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (2.5%)
   patch tree reduce : 1.34 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 144.83 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.664030386139069e-20,-2.0876687378500992e-19,4.690237799943596e-19)
    sum a = (4.697756860094644e-19,-1.2945427935274416e-19,2.891296951667764e-20)
    sum e = 7.856778104339966e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040125980044722294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7581e+04 | 2592 |      1 | 4.502e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3209.01151560323 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 13.89969993770321, dt = 0.040125980044722294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (3.0%)
   patch tree reduce : 1.56 us    (1.0%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 138.08 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4845032214776888e-20,-2.1213787799060613e-19,4.687471200886282e-19)
    sum a = (1.3062127799822431e-19,2.413638728783616e-19,1.4817727013757497e-20)
    sum e = 7.856776206614376e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.0401258508495442 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7715e+04 | 2592 |      1 | 4.491e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3216.488722646964 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.939825917747932, dt = 0.0401258508495442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.9%)
   patch tree reduce : 1.67 us    (1.0%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 142.37 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.72900988771835e-20,-1.9500515785916624e-19,4.690589012829841e-19)
    sum a = (-4.655485798340336e-20,-6.894112600695566e-20,-4.106586377284534e-20)
    sum e = 7.856774491507343e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.04012572000302115 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7667e+04 | 2592 |      1 | 4.495e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3213.810157092451 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 13.979951768597475, dt = 0.04012572000302115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (3.2%)
   patch tree reduce : 1.92 us    (1.2%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 136.53 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.229854187920995e-20,-2.0399217455497764e-19,4.662899156171364e-19)
    sum a = (1.0821638287597016e-19,-2.1369097492730428e-19,2.3277420373923367e-20)
    sum e = 7.856772957327087e-10
    sum de = -1.075334796318936e-23
Info: cfl dt = 0.0401255875626883 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8346e+04 | 2592 |      1 | 4.442e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3251.620463328044 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.020077488600496, dt = 0.0401255875626883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (2.9%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 1.20 us    (0.8%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 140.95 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4555830781589007e-20,-2.1547314281454418e-19,4.685148460884627e-19)
    sum a = (-6.323980885039042e-20,1.0448685516069394e-20,-6.4038056677411e-20)
    sum e = 7.856771602226785e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.04012545358617547 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6309e+04 | 2592 |      1 | 4.603e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3138.1017681098597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.060203076163184, dt = 0.04012545358617547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (3.2%)
   patch tree reduce : 1.94 us    (1.2%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 144.78 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.978774761835155e-20,-2.10566577590118e-19,4.641934976075102e-19)
    sum a = (2.735664807061594e-20,2.2044291950279393e-20,1.1382562046606495e-19)
    sum e = 7.856770424166693e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.040125318131187665 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5468e+04 | 2592 |      1 | 4.673e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3091.203817578188 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.100328529749358, dt = 0.040125318131187665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (3.4%)
   patch tree reduce : 2.03 us    (1.3%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 141.99 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7329535436254574e-20,-2.0944756522647627e-19,4.7232921720113615e-19)
    sum a = (-6.171780414874115e-20,3.6640587908691156e-20,-1.5241374091709994e-19)
    sum e = 7.856769420918016e-10
    sum de = 1.6543612251060553e-23
Info: cfl dt = 0.04012518125548592 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3466e+04 | 2592 |      1 | 4.848e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2979.649542201478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.140453847880545, dt = 0.0014811087432722303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (2.7%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.0%)
   LB compute        : 151.18 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.95511282639251e-20,-2.0908606343499142e-19,4.667620063395987e-19)
    sum a = (-7.968444318553814e-20,7.280173021519906e-20,-1.0209741013469325e-19)
    sum e = 7.856767310581155e-10
    sum de = -2.68833699079734e-23
Info: cfl dt = 0.04012517617706485 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9820e+04 | 2592 |      1 | 4.333e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.05575805122268 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 393                                                     [SPH][rank=0]
Info: time since start : 129.747595316 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008666980000000001 s
sph::RenderFieldGetter compute custom field took :  0.000736593 s
rho_t_ampl=0.000278809, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000167085, eps_t_phi=1.96465e-12 rad
vx_t_ampl=2.65524e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14.50s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 14.141934956623817, dt = 0.04012517617706485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.27 us   (4.8%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 227.61 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2337978438281026e-20,-2.0615338015157058e-19,4.627025917494631e-19)
    sum a = (-1.186588550799984e-19,-6.739244514327848e-20,4.064693593784281e-20)
    sum e = 7.856768888724348e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.04012503790329519 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3229e+04 | 2592 |      1 | 5.996e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2409.1441711339335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.182060132800883, dt = 0.04012503790329519 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (2.8%)
   patch tree reduce : 1.78 us    (1.0%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 158.92 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.743844007813999e-20,-2.1166628247171452e-19,4.671973726118109e-19)
    sum a = (6.848240642190139e-20,9.200174378571743e-20,-3.088427572969429e-20)
    sum e = 7.856768068297028e-10
    sum de = -8.68539643180679e-24
Info: cfl dt = 0.040124898312176326 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.2565e+04 | 2592 |      1 | 6.089e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2372.1304486896133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.222185170704178, dt = 0.040124898312176326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.3%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.5%)
   LB compute        : 160.09 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3034690981870007e-20,-2.0477556536902493e-19,4.645230478990037e-19)
    sum a = (1.858336930901995e-19,-3.0663157070231336e-20,-1.0175598696473409e-20)
    sum e = 7.856767581090071e-10
    sum de = -1.5716431638507526e-23
Info: cfl dt = 0.040124757476024404 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3927e+04 | 2592 |      1 | 5.901e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2448.0200962170893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.262310069016355, dt = 0.040124757476024404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.3%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 157.70 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2360528993299198e-20,-2.0847602916186074e-19,4.645302212491937e-19)
    sum a = (-1.361754654661458e-19,-1.0411516045648044e-19,-1.4419465076323188e-19)
    sum e = 7.856767257224117e-10
    sum de = -6.2038545941477076e-24
Info: cfl dt = 0.04012461545251696 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4857e+04 | 2592 |      1 | 5.778e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2499.8097556904954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.302434826492378, dt = 0.04012461545251696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (2.8%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 154.93 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (53.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.453328022657084e-20,-2.141207974763986e-19,4.560557253563638e-19)
    sum a = (-3.0929141384634063e-19,1.086182583583009e-19,1.0663708215816159e-20)
    sum e = 7.856767094285906e-10
    sum de = -2.4401828070314316e-23
Info: cfl dt = 0.0401244722994101 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4581e+04 | 2592 |      1 | 5.814e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2484.4590502368287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.342559441944895, dt = 0.0401244722994101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (2.4%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.8%)
   LB compute        : 165.97 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9558609232650196e-20,-2.054895314072075e-19,4.5959041707307355e-19)
    sum a = (-3.931281659705167e-19,1.5941356059814898e-20,-3.7191884164138335e-21)
    sum e = 7.856767089019814e-10
    sum de = -1.943874439499615e-23
Info: cfl dt = 0.04012432807440054 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4058e+04 | 2592 |      1 | 4.795e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3012.566085773782 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.382683914244305, dt = 0.04012432807440054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.7%)
   patch tree reduce : 1.56 us    (1.0%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 144.95 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (56.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.676609450732901e-20,-2.0671863749825599e-19,4.591526340681218e-19)
    sum a = (-1.9058970103442203e-19,1.6977519555853448e-19,-4.638631797324186e-20)
    sum e = 7.856767238034484e-10
    sum de = 8.271806125530277e-24
Info: cfl dt = 0.04012418283510903 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6786e+04 | 2592 |      1 | 4.564e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3164.608933181005 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.422808242318705, dt = 0.04012418283510903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.6%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 142.91 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.110411600514719e-20,-1.968060940567453e-19,4.564354260125816e-19)
    sum a = (-1.0851831903135808e-19,1.3672167207921743e-19,-9.402616725516701e-20)
    sum e = 7.856767537797621e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.0401240366390622 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6493e+04 | 2592 |      1 | 4.588e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3148.2216469545365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.462932425153815, dt = 0.0401240366390622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.5%)
   patch tree reduce : 1.87 us    (1.2%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 140.07 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (54.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.40224213764067e-20,-1.9198702869775807e-19,4.517069616212085e-19)
    sum a = (-2.0859392804158364e-19,1.9567150990073598e-19,-1.5405653384141643e-19)
    sum e = 7.85676798464317e-10
    sum de = -1.4889251025954498e-23
Info: cfl dt = 0.04012388954367468 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7717e+04 | 2592 |      1 | 4.491e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3216.423967247577 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.503056461792877, dt = 0.001492211667446952 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.6%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 146.32 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.599424932996041e-20,-1.9050980092255406e-19,4.502727463497386e-19)
    sum a = (1.9224500952168134e-20,8.899280621815525e-20,-3.275310202001225e-20)
    sum e = 7.856767341913841e-10
    sum de = -1.819797347616661e-23
Info: cfl dt = 0.04012388405692886 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9780e+04 | 2592 |      1 | 4.336e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.89443848897503 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 403                                                     [SPH][rank=0]
Info: time since start : 130.684192451 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007033930000000001 s
sph::RenderFieldGetter compute custom field took :  0.0005715350000000001 s
rho_t_ampl=0.00033812, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000166222, eps_t_phi=2.21512e-12 rad
vx_t_ampl=2.65878e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 14.87s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 14.504548673460324, dt = 0.04012388405692886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.79 us   (4.7%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1.22 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 224.83 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (74.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.527124574699072e-20,-1.8701925464727366e-19,4.490490698799425e-19)
    sum a = (-4.8776861608564207e-20,1.542204833803544e-19,-3.5153361950615246e-20)
    sum e = 7.856768353852901e-10
    sum de = -1.4475660719677984e-23
Info: cfl dt = 0.040123736101714366 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3354e+04 | 2592 |      1 | 5.979e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2416.0099997152206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.544672557517252, dt = 0.040123736101714366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.1%)
   patch tree reduce : 1.85 us    (1.0%)
   gen split merge   : 3.26 us    (1.8%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 157.03 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 2.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.793978624413342e-20,-1.7953904314596956e-19,4.47590431786361e-19)
    sum a = (2.490348869764995e-19,-7.241882844195266e-20,1.491858701651734e-20)
    sum e = 7.856769213196787e-10
    sum de = 1.3234889800848443e-23
Info: cfl dt = 0.040123587351008204 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6893e+04 | 2592 |      1 | 4.556e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3170.505846188061 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.584796293618966, dt = 0.040123587351008204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.4%)
   patch tree reduce : 1.14 us    (0.7%)
   gen split merge   : 651.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 154.61 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.225718125353616e-20,-1.8698639084804777e-19,4.491935558488933e-19)
    sum a = (2.7384171502467625e-19,7.168824436154433e-20,-8.101879433353848e-20)
    sum e = 7.856770082432711e-10
    sum de = 1.1994118882018901e-23
Info: cfl dt = 0.040123437874563586 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8400e+04 | 2592 |      1 | 4.438e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3254.468212406026 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.624919880969975, dt = 0.040123437874563586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (1.6%)
   patch tree reduce : 831.00 ns  (0.5%)
   gen split merge   : 541.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 163.22 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 1.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0031847941503086e-20,-1.8121591850147086e-19,4.440181273373701e-19)
    sum a = (2.5547495923230402e-20,-5.544341165575281e-21,2.3899950384201884e-20)
    sum e = 7.856771083328414e-10
    sum de = -1.406207041340147e-23
Info: cfl dt = 0.0401232877290731 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.0588e+04 | 2592 |      1 | 6.386e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2261.827974660792 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 14.665043318844537, dt = 0.0401232877290731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (1.6%)
   patch tree reduce : 951.00 ns  (0.6%)
   gen split merge   : 571.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 157.16 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 1.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 702.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.427785080148876e-20,-1.8299426083708213e-19,4.470819222911559e-19)
    sum a = (2.207379234505326e-19,3.3953285519920076e-20,-1.4433430276017772e-19)
    sum e = 7.856772211022915e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.04012313697112069 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6863e+04 | 2592 |      1 | 4.558e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3168.7783980491854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.705166606573611, dt = 0.04012313697112069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (1.8%)
   patch tree reduce : 1.35 us    (0.8%)
   gen split merge   : 591.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 160.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 1.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1605569819983516e-20,-1.8083880640535372e-19,4.379157216194501e-19)
    sum a = (-1.5555339928094983e-19,-3.409610183491542e-20,1.6576734402905998e-19)
    sum e = 7.856773461202204e-10
    sum de = -1.4889251025954498e-23
Info: cfl dt = 0.040122985657071716 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7334e+04 | 2592 |      1 | 4.521e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3195.0469561221153 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.745289743544731, dt = 0.040122985657071716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (1.8%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 145.77 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.635484291256535e-20,-1.8356896652604497e-19,4.507879278108998e-19)
    sum a = (8.045551007487571e-20,-4.252097425877279e-20,3.477051267283029e-20)
    sum e = 7.85677482944726e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.040122833843057835 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8597e+04 | 2592 |      1 | 4.423e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3265.3751928229794 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.785412729201802, dt = 0.040122833843057835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (1.6%)
   patch tree reduce : 1.05 us    (0.7%)
   gen split merge   : 550.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 147.05 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 2.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7297579845908595e-20,-1.8543152234717258e-19,4.4955502732068715e-19)
    sum a = (-7.131115794027033e-20,-2.2373494789087542e-20,1.112765879395544e-20)
    sum e = 7.856776311260537e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.0401226815849604 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7894e+04 | 2592 |      1 | 4.477e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3226.2266931347276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.825535563044859, dt = 0.0401226815849604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (1.8%)
   patch tree reduce : 891.00 ns  (0.5%)
   gen split merge   : 771.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 159.41 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.422526872272734e-20,-1.8593392767783847e-19,4.495271896823576e-19)
    sum a = (3.108751087773571e-20,-1.0795797841713499e-19,7.967142957714397e-20)
    sum e = 7.856777902069389e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.04012252893839413 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5725e+04 | 2592 |      1 | 4.651e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3105.3546740504366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.86565824462982, dt = 0.0015041456670115139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.5%)
   patch tree reduce : 1.81 us    (1.0%)
   gen split merge   : 1.11 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 160.04 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.126752679239675e-20,-1.8782482852579843e-19,4.510221070628311e-19)
    sum a = (-3.5692715063260425e-19,-1.3179570951079504e-20,3.211452666867162e-20)
    sum e = 7.85676940618899e-10
    sum de = -1.9852334701272664e-23
Info: cfl dt = 0.04012252320931123 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7091e+04 | 2592 |      1 | 4.540e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 119.26930312498416 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 413                                                     [SPH][rank=0]
Info: time since start : 131.358378628 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000836362 s
sph::RenderFieldGetter compute custom field took :  0.000666638 s
rho_t_ampl=0.000396717, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000167434, eps_t_phi=2.13651e-12 rad
vx_t_ampl=2.59208e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.23s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 14.867162390296832, dt = 0.04012252320931123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.65 us   (4.8%)
   patch tree reduce : 2.18 us    (0.9%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 214.88 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (75.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.614825508188217e-20,-1.8827054380279962e-19,4.522748566497347e-19)
    sum a = (-3.1189552974332114e-19,3.653848868556875e-20,1.8054905296986406e-19)
    sum e = 7.856778975425138e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.040122370228808935 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5115e+04 | 2592 |      1 | 4.703e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3071.3208456751827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.907284913506142, dt = 0.040122370228808935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (2.6%)
   patch tree reduce : 1.48 us    (0.8%)
   gen split merge   : 952.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 158.32 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.805809592134665e-20,-1.8580658045583813e-19,4.624966964607512e-19)
    sum a = (-2.5776392284838763e-19,3.210790295950122e-20,2.5463133024109167e-20)
    sum e = 7.856781120175613e-10
    sum de = 1.819797347616661e-23
Info: cfl dt = 0.04012221696147264 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5345e+04 | 2592 |      1 | 5.716e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.8859449470165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.947407283734952, dt = 0.04012221696147264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (3.0%)
   patch tree reduce : 1.78 us    (1.0%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 162.14 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.694446723202875e-20,-1.8461115975899617e-19,4.604071264597832e-19)
    sum a = (7.274566277648066e-20,-1.4210746466966013e-20,6.486024144658032e-20)
    sum e = 7.856783012566229e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.04012206347286266 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5596e+04 | 2592 |      1 | 4.662e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3098.1204089095104 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 14.987529500696425, dt = 0.04012206347286266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.42 us    (2.5%)
   patch tree reduce : 1.45 us    (0.8%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 156.41 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.762429377156482e-20,-1.8611098139616798e-19,4.6379980284986145e-19)
    sum a = (-1.9027811113801152e-19,-1.2147930399596526e-19,-1.0009553953662894e-19)
    sum e = 7.856784995764369e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.04012190981729261 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6870e+04 | 2592 |      1 | 4.558e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3169.0681163500526 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.027651564169288, dt = 0.04012190981729261 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.26 us    (2.3%)
   patch tree reduce : 1.48 us    (0.8%)
   gen split merge   : 802.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.7%)
   LB compute        : 165.49 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.059892170594832e-20,-1.9314342363301925e-19,4.56474595482048e-19)
    sum a = (-1.4174978201109313e-19,9.879114474800056e-20,8.632931947433453e-21)
    sum e = 7.85678706403705e-10
    sum de = 1.5716431638507526e-23
Info: cfl dt = 0.0401217560487946 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6489e+04 | 2592 |      1 | 4.589e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3147.8227308318715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.06777347398658, dt = 0.0401217560487946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (2.2%)
   patch tree reduce : 1.43 us    (0.8%)
   gen split merge   : 781.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 157.11 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.51867080778833e-20,-1.8475083090570623e-19,4.590021608353618e-19)
    sum a = (-2.910089421453033e-20,6.182210178030786e-21,-1.3962045614806232e-19)
    sum e = 7.856789212552871e-10
    sum de = -1.6957202557337067e-23
Info: cfl dt = 0.040121602221038874 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6582e+04 | 2592 |      1 | 4.581e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3152.9856904797034 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.107895230035375, dt = 0.040121602221038874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.6%)
   patch tree reduce : 1.31 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 157.03 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.392473818760892e-20,-1.8636690823263963e-19,4.504262712965979e-19)
    sum a = (-2.942295944694411e-19,-7.41518065390817e-20,-7.567343741815531e-20)
    sum e = 7.856791436421953e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.040121448387320235 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.1858e+04 | 2592 |      1 | 6.192e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2332.5158688822885 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.148016832256413, dt = 0.040121448387320235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (2.7%)
   patch tree reduce : 1.65 us    (1.0%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 156.43 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 992.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.118289360058767e-19,-1.9095099742716172e-19,4.486729718072654e-19)
    sum a = (-1.0572941486955054e-19,6.389799629184e-20,3.396141176669436e-21)
    sum e = 7.856793730736358e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.04012129460054356 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1713e+04 | 2592 |      1 | 5.012e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2881.649030012379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.188138280643734, dt = 0.04012129460054356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.3%)
   patch tree reduce : 1.38 us    (0.8%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.9%)
   LB compute        : 160.25 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.116448987302117e-19,-1.8561843520526988e-19,4.503954223962054e-19)
    sum a = (-1.0655922580000439e-19,2.8241659913832044e-20,1.4149068197976652e-20)
    sum e = 7.856796090575459e-10
    sum de = 6.617444900424222e-24
Info: cfl dt = 0.04012114091320937 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6451e+04 | 2592 |      1 | 4.592e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3145.6597529654105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.228259575244278, dt = 0.0015165318890630886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.2%)
   patch tree reduce : 1.67 us    (0.9%)
   gen split merge   : 842.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.6%)
   LB compute        : 164.86 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1197353672247065e-19,-1.8628926750696846e-19,4.506325905857602e-19)
    sum a = (-4.351068426110867e-19,-1.422544467279558e-19,-1.899392922562568e-19)
    sum e = 7.856772930683562e-10
    sum de = -1.5302841332231012e-23
Info: cfl dt = 0.04012113510686366 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9157e+04 | 2592 |      1 | 4.382e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.60128440255913 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 423                                                     [SPH][rank=0]
Info: time since start : 132.029118788 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000782522 s
sph::RenderFieldGetter compute custom field took :  0.0007379950000000001 s
rho_t_ampl=0.000453102, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00017053, eps_t_phi=2.25509e-12 rad
vx_t_ampl=2.46132e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.59s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 15.229776107133342, dt = 0.04012113510686366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.44 us   (4.7%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 217.83 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2904956680024587e-19,-1.9211889469215196e-19,4.428572573256476e-19)
    sum a = (3.6725295634938056e-20,-6.422273331261857e-20,4.884405381142096e-20)
    sum e = 7.856797629370962e-10
    sum de = 9.512577044359818e-24
Info: cfl dt = 0.04012098158643554 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5434e+04 | 2592 |      1 | 4.676e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3089.0051616422666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.269897242240205, dt = 0.04012098158643554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.7%)
   patch tree reduce : 1.98 us    (1.2%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 152.72 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1819136753601006e-19,-1.9313849406313537e-19,4.496070581536423e-19)
    sum a = (-2.2041750140808014e-20,-2.1057284064716776e-19,-1.4955623047654103e-19)
    sum e = 7.856800594665178e-10
    sum de = -6.617444900424222e-24
Info: cfl dt = 0.040120828262399204 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4963e+04 | 2592 |      1 | 4.716e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3062.7200965810416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.31001822382664, dt = 0.040120828262399204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.5%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 721.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 160.29 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.201894865289445e-19,-2.0451840614008228e-19,4.396267312387659e-19)
    sum a = (3.47649700111134e-20,-5.2865572356053724e-20,-7.13657424762155e-20)
    sum e = 7.856803123128033e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04012067519470672 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6961e+04 | 2592 |      1 | 4.550e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3174.0731219567706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.35013905208904, dt = 0.04012067519470672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.1%)
   patch tree reduce : 1.28 us    (0.7%)
   gen split merge   : 1.08 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.8%)
   LB compute        : 166.01 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1790216610282217e-19,-2.0347580210964077e-19,4.383320230352838e-19)
    sum a = (-2.562981974029127e-19,-8.178191740273383e-21,-6.870665675679495e-20)
    sum e = 7.856805697524961e-10
    sum de = 9.098986738083304e-24
Info: cfl dt = 0.04012052243404982 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8165e+04 | 2592 |      1 | 4.456e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3241.119015049236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.390259727283746, dt = 0.04012052243404982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (1.7%)
   patch tree reduce : 1.06 us    (0.7%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 651.00 ns  (0.4%)
   LB compute        : 144.16 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 1.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3395284564474945e-19,-2.0290479359809083e-19,4.356288182287346e-19)
    sum a = (-7.225927854793741e-20,-9.779942665199518e-20,2.297811327384672e-20)
    sum e = 7.856808312659751e-10
    sum de = 7.237830359838992e-24
Info: cfl dt = 0.04012037003068414 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7618e+04 | 2592 |      1 | 4.499e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3210.6442291999915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.430380249717796, dt = 0.04012037003068414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (1.6%)
   patch tree reduce : 771.00 ns  (0.5%)
   gen split merge   : 591.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 157.82 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 2.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3298664994750813e-19,-2.0862884582826115e-19,4.383899290723537e-19)
    sum a = (-3.171964605584581e-19,-5.608293509091349e-20,-5.938835447297926e-20)
    sum e = 7.85681096371404e-10
    sum de = 4.342698215903395e-24
Info: cfl dt = 0.040120218034378936 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8623e+04 | 2592 |      1 | 4.421e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3266.644453268496 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.47050061974848, dt = 0.040120218034378936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (1.7%)
   patch tree reduce : 811.00 ns  (0.6%)
   gen split merge   : 621.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.8%)
   LB compute        : 129.43 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.24 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5119319471865416e-19,-2.1004075680250369e-19,4.343549687601052e-19)
    sum a = (-3.3479831142384764e-19,-9.792527991906002e-21,1.4479177604588633e-20)
    sum e = 7.856813645860168e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.04012006649440546 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9665e+04 | 2592 |      1 | 4.344e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3324.6798851414455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.51062083778286, dt = 0.04012006649440546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (1.7%)
   patch tree reduce : 891.00 ns  (0.5%)
   gen split merge   : 621.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 150.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.646870706808068e-19,-2.0950302288766997e-19,4.364176650746946e-19)
    sum a = (1.0537777221783345e-19,8.392507759628992e-20,-1.155093044994008e-19)
    sum e = 7.85681635430552e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.0401199154595246 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0061e+04 | 2592 |      1 | 4.316e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3346.745970391006 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.550740904277264, dt = 0.0401199154595246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.4%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.7%)
   LB compute        : 138.17 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 742.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5144295959277096e-19,-2.0426247930361064e-19,4.2917586827062814e-19)
    sum a = (-2.0062527832428467e-19,4.991887662581695e-20,5.0775024408936134e-20)
    sum e = 7.856819084301633e-10
    sum de = -3.7223127564886245e-24
Info: cfl dt = 0.04011976497797483 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9928e+04 | 2592 |      1 | 4.325e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3339.2916973182187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.590860819736788, dt = 0.0015290042330597942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (2.0%)
   patch tree reduce : 1.30 us    (0.8%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 151.31 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5896219685565583e-19,-2.0486470842442517e-19,4.3258916010690545e-19)
    sum a = (1.0729373171270315e-19,-5.364555082297923e-21,3.63944023593381e-20)
    sum e = 7.856777278062309e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.04011975925469993 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.8016e+04 | 2592 |      1 | 5.398e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.96687373263539 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 433                                                     [SPH][rank=0]
Info: time since start : 132.668130276 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000763172 s
sph::RenderFieldGetter compute custom field took :  0.000702101 s
rho_t_ampl=0.00050593, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000175281, eps_t_phi=2.53442e-12 rad
vx_t_ampl=2.27392e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 15.96s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 15.592389823969848, dt = 0.04011975925469993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.90 us   (5.6%)
   patch tree reduce : 1.97 us    (0.9%)
   gen split merge   : 811.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 186.51 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5387488073548723e-19,-2.0512227845085811e-19,4.340383007517964e-19)
    sum a = (6.223581978403933e-20,1.2199521549763381e-19,2.9479356274207985e-21)
    sum e = 7.85682083658073e-10
    sum de = -1.0960143116327617e-23
Info: cfl dt = 0.04011960940459415 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7509e+04 | 2592 |      1 | 4.507e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3204.51916674635 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 15.632509583224548, dt = 0.04011960940459415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (3.1%)
   patch tree reduce : 1.47 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 141.17 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 812.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5190305278193352e-19,-1.9767369835630893e-19,4.3348563868110975e-19)
    sum a = (-3.911778021858324e-20,-2.4136416172034697e-20,-7.415429822544914e-22)
    sum e = 7.856824140859037e-10
    sum de = 5.997059441009451e-24
Info: cfl dt = 0.040119460197892295 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7143e+04 | 2592 |      1 | 4.536e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3184.1205533230295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.672629192629143, dt = 0.040119460197892295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (3.0%)
   patch tree reduce : 1.72 us    (1.1%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 143.09 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5555093449600789e-19,-2.0157709610936466e-19,4.33381878156578e-19)
    sum a = (-3.18634251774591e-19,-6.646734574330826e-20,2.1986036615329614e-19)
    sum e = 7.856826908731967e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.04011931168776291 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8156e+04 | 2592 |      1 | 4.457e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3240.5401967485313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.712748652827036, dt = 0.04011931168776291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (3.1%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.9%)
   LB compute        : 136.06 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7467766564547898e-19,-2.0509146863908384e-19,4.466277394706334e-19)
    sum a = (7.787405864568164e-20,-2.1386409197007467e-20,-2.2253382770140514e-21)
    sum e = 7.856829678542946e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.04011916392020829 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8478e+04 | 2592 |      1 | 4.432e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3258.4941058907025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.752867964514799, dt = 0.04011916392020829 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (2.4%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 146.10 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6316219039672526e-19,-2.0503847576283207e-19,4.420834979607975e-19)
    sum a = (3.916707591742208e-19,2.0219830776499085e-19,7.123348286661097e-20)
    sum e = 7.856832446771153e-10
    sum de = 1.075334796318936e-23
Info: cfl dt = 0.04011901694066184 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9148e+04 | 2592 |      1 | 4.382e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3295.783850216469 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.792987128435007, dt = 0.04011901694066184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.43 us    (2.6%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 152.20 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4122231803351752e-19,-1.924417815195464e-19,4.464148685100985e-19)
    sum a = (1.339397001250591e-19,-8.716937404394787e-21,5.81285626301031e-20)
    sum e = 7.856835209074023e-10
    sum de = -1.075334796318936e-23
Info: cfl dt = 0.040118870793967136 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6122e+04 | 2592 |      1 | 4.619e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3127.1666569243293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.833106145375668, dt = 0.040118870793967136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (2.9%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 146.08 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4067677896636766e-19,-1.970246383215975e-19,4.484840425452034e-19)
    sum a = (2.1502126557518811e-19,-6.213058903239206e-20,7.761932335614628e-20)
    sum e = 7.856837961144382e-10
    sum de = 4.963083675318166e-24
Info: cfl dt = 0.04011872552436818 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7451e+04 | 2592 |      1 | 4.512e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3201.208857811092 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.873225016169634, dt = 0.04011872552436818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.5%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 144.64 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.9%)
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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3042984636773348e-19,-2.005895389426265e-19,4.519890045299381e-19)
    sum a = (2.963328776198984e-20,1.2876394700767675e-19,6.858928901102126e-21)
    sum e = 7.856840698760782e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04011858117549954 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7184e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3186.327704150414 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.913343741694002, dt = 0.04011858117549954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (3.2%)
   patch tree reduce : 1.67 us    (1.1%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 139.95 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3307209582549546e-19,-1.9159184151206667e-19,4.5084476660426515e-19)
    sum a = (1.626725197882594e-19,-8.437252351818688e-20,-7.969635382694445e-20)
    sum e = 7.856843417782377e-10
    sum de = -2.0472720160687435e-23
Info: cfl dt = 0.04011843779037679 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8096e+04 | 2592 |      1 | 4.462e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3237.098440186104 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 15.953462322869502, dt = 0.0015412179368539114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (3.0%)
   patch tree reduce : 1.69 us    (1.1%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 139.44 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.299500348990354e-19,-1.960083253305367e-19,4.489856995861091e-19)
    sum a = (1.817992509377305e-19,1.0611779501245305e-19,1.92748668383241e-19)
    sum e = 7.856781816180149e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.040118432301860844 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1878e+04 | 2592 |      1 | 4.996e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.04802581631766 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 443                                                     [SPH][rank=0]
Info: time since start : 133.309706855 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008272280000000001 s
sph::RenderFieldGetter compute custom field took :  0.000725266 s
rho_t_ampl=0.00055403, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000181431, eps_t_phi=2.1414e-12 rad
vx_t_ampl=2.03826e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16.32s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 15.955003540806356, dt = 0.040118432301860844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.93 us   (5.1%)
   patch tree reduce : 2.04 us    (0.9%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 204.18 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2254253455351859e-19,-1.9160046825936347e-19,4.569284225674507e-19)
    sum a = (6.420929092755435e-20,2.344408568229953e-19,5.847092827111585e-20)
    sum e = 7.856845144412078e-10
    sum de = -7.651420666115506e-24
Info: cfl dt = 0.040118289966822866 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3740e+04 | 2592 |      1 | 5.926e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2437.2179280944524 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 15.995121973108217, dt = 0.040118289966822866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (2.8%)
   patch tree reduce : 2.27 us    (1.3%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 159.61 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2251624351413787e-19,-1.796125758967375e-19,4.565806700092664e-19)
    sum a = (-2.4038883219765676e-19,-4.262383409912337e-20,-2.3661356189168948e-20)
    sum e = 7.856848338218983e-10
    sum de = -1.1166938269465874e-23
Info: cfl dt = 0.04011814867685932 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.1053e+04 | 2592 |      1 | 6.314e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2287.446268578252 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.03524026307504, dt = 0.04011814867685932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (2.6%)
   patch tree reduce : 1.79 us    (0.9%)
   gen split merge   : 1.08 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.6%)
   LB compute        : 174.32 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3777819187464369e-19,-1.8688862104535074e-19,4.539839168019711e-19)
    sum a = (2.072391179184961e-20,8.642338345297472e-20,-4.1911455499765884e-20)
    sum e = 7.85685097895356e-10
    sum de = -1.6336817097922297e-23
Info: cfl dt = 0.0401180084774358 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6456e+04 | 2592 |      1 | 5.579e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2588.5381077753023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.0753584117519, dt = 0.0401180084774358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (2.2%)
   patch tree reduce : 1.52 us    (0.8%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 166.18 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.322767918842288e-19,-1.8083100125303755e-19,4.519364325761741e-19)
    sum a = (8.428578587465381e-20,1.154484085060109e-20,-9.995833474664535e-21)
    sum e = 7.856853582719135e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.040117869408990724 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.6153e+04 | 2592 |      1 | 5.616e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2571.5925716324273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.115476420229335, dt = 0.040117869408990724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.53 us    (2.7%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.6%)
   LB compute        : 151.49 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2724863060266681e-19,-1.8187155129602748e-19,4.521756166316882e-19)
    sum a = (1.2084018975361721e-19,1.0200579236819771e-19,1.515651784521131e-20)
    sum e = 7.856856148455699e-10
    sum de = -4.756288522179909e-24
Info: cfl dt = 0.0401177315112849 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.6286e+04 | 2592 |      1 | 5.600e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2579.0230226594826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.155594289638326, dt = 0.0401177315112849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (2.7%)
   patch tree reduce : 1.86 us    (1.1%)
   gen split merge   : 981.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.8%)
   LB compute        : 155.38 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.215960571358128e-19,-1.7596181860023086e-19,4.532881911180341e-19)
    sum a = (3.491121391766863e-20,1.4559045772702276e-19,1.788430184425802e-19)
    sum e = 7.856858672654574e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.04011759482340797 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7314e+04 | 2592 |      1 | 4.522e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3193.508602976479 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.19571202114961, dt = 0.04011759482340797 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (2.2%)
   patch tree reduce : 1.91 us    (1.1%)
   gen split merge   : 931.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 160.02 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2258197111258968e-19,-1.692473336208901e-19,4.637463084104155e-19)
    sum a = (1.5139695027385472e-19,1.7799065754298855e-19,-9.111236773402712e-20)
    sum e = 7.856861151885911e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.04011745938377102 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9695e+04 | 2592 |      1 | 4.342e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3326.147376017137 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.235829615973017, dt = 0.04011745938377102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.6%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 134.80 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1419512955014119e-19,-1.614606671918045e-19,4.546761312969545e-19)
    sum a = (-2.8052539019224274e-20,-1.229517722971212e-19,-6.319915186906823e-20)
    sum e = 7.856863582832034e-10
    sum de = 7.031035206700735e-24
Info: cfl dt = 0.040117325230099046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8661e+04 | 2592 |      1 | 4.419e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3268.5299781911226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.27594707535679, dt = 0.040117325230099046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (3.1%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 1.08 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 135.58 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (54.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.193416005089164e-19,-1.7241581466375673e-19,4.527006540190104e-19)
    sum a = (3.328445585598681e-20,5.598065132985597e-20,-6.0389004472856955e-21)
    sum e = 7.856865962292628e-10
    sum de = -9.098986738083304e-24
Info: cfl dt = 0.04011719239942373 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7933e+04 | 2592 |      1 | 4.474e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3227.952195182821 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.31606440058689, dt = 0.0015528570559766308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.7%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 150.75 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1727775391753015e-19,-1.6874862546763713e-19,4.538378346681056e-19)
    sum a = (1.7210771654601396e-19,1.932441011117025e-19,6.746344705490675e-20)
    sum e = 7.856785978839173e-10
    sum de = 5.169878828456423e-24
Info: cfl dt = 0.040117187284904814 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8900e+04 | 2592 |      1 | 4.401e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.03307364499094 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 453                                                     [SPH][rank=0]
Info: time since start : 134.006663119 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000815831 s
sph::RenderFieldGetter compute custom field took :  0.0007055070000000001 s
rho_t_ampl=0.000596428, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000188708, eps_t_phi=2.22089e-12 rad
vx_t_ampl=1.76342e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 16.68s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 16.317617257642866, dt = 0.040117187284904814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.06 us   (4.5%)
   patch tree reduce : 1.95 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 219.68 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1029748296195e-19,-1.6088349671789973e-19,4.566013477279849e-19)
    sum a = (-4.2375239997853986e-19,-2.5056617634330116e-19,-9.804848638719188e-20)
    sum e = 7.856867458614287e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.04011705586927837 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7165e+04 | 2592 |      1 | 4.534e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3185.1189571060186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.35773444492777, dt = 0.04011705586927837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (2.8%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 1.01 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 137.93 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3917161696182165e-19,-1.79846730466222e-19,4.493479945058061e-19)
    sum a = (-5.526705115818822e-20,-3.92001162311946e-20,-1.2121780602461439e-19)
    sum e = 7.856870164245915e-10
    sum de = 1.3648480107124957e-23
Info: cfl dt = 0.040116925847716464 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7857e+04 | 2592 |      1 | 4.480e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3223.682491145386 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.39785150079705, dt = 0.040116925847716464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (2.1%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 742.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 147.92 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3427491087716324e-19,-1.7718065475402124e-19,4.44020366324918e-19)
    sum a = (-6.065342785131247e-20,1.0851613666969074e-19,-6.125062571709566e-20)
    sum e = 7.856872373268134e-10
    sum de = 9.719372197498075e-24
Info: cfl dt = 0.040116797257323034 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.7262e+04 | 2592 |      1 | 5.484e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2633.3485206369396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.437968426644765, dt = 0.040116797257323034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (1.8%)
   patch tree reduce : 1.09 us    (0.7%)
   gen split merge   : 681.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.5%)
   LB compute        : 145.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 581.00 ns  (56.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3675941409864092e-19,-1.698524383241369e-19,4.427660368539882e-19)
    sum a = (1.0710312167719295e-19,9.316450608207864e-21,1.1408446102932095e-19)
    sum e = 7.85687451468908e-10
    sum de = -5.997059441009451e-24
Info: cfl dt = 0.0401166701323007 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.8152e+04 | 2592 |      1 | 5.383e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2682.902305415219 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.478085223902088, dt = 0.0401166701323007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (1.9%)
   patch tree reduce : 801.00 ns  (0.5%)
   gen split merge   : 721.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 641.00 ns  (0.4%)
   LB compute        : 140.10 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 1.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 591.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2902327576086517e-19,-1.714754992084058e-19,4.508596666078956e-19)
    sum a = (-1.7418799503701315e-19,-1.950875291746869e-19,1.063677109424851e-19)
    sum e = 7.856876590318476e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.040116544506091006 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.7767e+04 | 2592 |      1 | 5.426e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2661.4558836226734 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.518201894034387, dt = 0.040116544506091006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (1.5%)
   patch tree reduce : 941.00 ns  (0.6%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 531.00 ns  (0.3%)
   LB compute        : 156.05 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 1.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 702.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.416626929431445e-19,-1.8339026961775417e-19,4.549719864590553e-19)
    sum a = (-4.587786371934991e-21,5.875851530911107e-20,2.0036202549421286e-19)
    sum e = 7.856878597715073e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.04011642041140562 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.8061e+04 | 2592 |      1 | 5.393e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2677.8196759774114 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.55831843854048, dt = 0.04011642041140562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (1.4%)
   patch tree reduce : 801.00 ns  (0.5%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 541.00 ns  (0.4%)
   LB compute        : 139.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3823828506380622e-19,-1.759540134479147e-19,4.64895157259768e-19)
    sum a = (3.137276865501648e-19,1.3829351807012238e-19,2.9940682553783685e-19)
    sum e = 7.85688053454756e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.040116297880221724 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.7810e+04 | 2592 |      1 | 5.421e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2663.8443763978066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.598434858951883, dt = 0.040116297880221724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (1.5%)
   patch tree reduce : 1.74 us    (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 206.92 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 922.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1941390086721336e-19,-1.6880490472381148e-19,4.788929120794561e-19)
    sum a = (3.4895439294040207e-19,5.0105935910754043e-20,4.8016531859000726e-20)
    sum e = 7.856882398615851e-10
    sum de = 2.0679515313825692e-24
Info: cfl dt = 0.040116176943775915 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.8059e+04 | 2592 |      1 | 5.393e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2677.714190945809 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.638551156832104, dt = 0.040116176943775915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (2.1%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 154.53 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0480922849122547e-19,-1.685641773944818e-19,4.757767278150296e-19)
    sum a = (-1.1435616216634807e-19,-1.6961086051562803e-19,1.365917361852825e-19)
    sum e = 7.85688418785094e-10
    sum de = 8.892191584945048e-24
Info: cfl dt = 0.04011605763255981 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.6131e+04 | 2592 |      1 | 5.619e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2570.2857598858795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.67866733377588, dt = 0.0015636407034911315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (2.3%)
   patch tree reduce : 1.92 us    (1.1%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.8%)
   LB compute        : 156.96 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.139387919161792e-19,-1.7322960449208796e-19,4.777669574982906e-19)
    sum a = (-1.6313589935734454e-19,2.516155328574899e-19,4.6289024228215725e-20)
    sum e = 7.85678931264918e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.04011605301530932 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.9381e+04 | 2592 |      1 | 5.249e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.24155892722736 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 463                                                     [SPH][rank=0]
Info: time since start : 134.706000195 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006962720000000001 s
sph::RenderFieldGetter compute custom field took :  0.0005469590000000001 s
rho_t_ampl=0.000632356, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000196824, eps_t_phi=2.12008e-12 rad
vx_t_ampl=1.45889e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17.04s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 16.68023097447937, dt = 0.04011605301530932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.65 us   (4.8%)
   patch tree reduce : 1.96 us    (0.9%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 197.06 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2041953312352575e-19,-1.6280356418767268e-19,4.795532899502342e-19)
    sum a = (2.0105086452426002e-19,8.511589206580384e-21,1.4254128591475338e-19)
    sum e = 7.856885299328795e-10
    sum de = -2.68833699079734e-24
Info: cfl dt = 0.04011593542454347 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.7284e+04 | 2592 |      1 | 5.482e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2634.4948885349822 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.720347027494682, dt = 0.04011593542454347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (2.8%)
   patch tree reduce : 1.83 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.8%)
   LB compute        : 159.56 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.054270679166723e-19,-1.6733466050594298e-19,4.872020973876563e-19)
    sum a = (-3.429764678612117e-19,2.38256125676955e-21,9.937023651321879e-20)
    sum e = 7.856887238578096e-10
    sum de = -3.1019272970738538e-24
Info: cfl dt = 0.04011581951866468 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.7425e+04 | 2592 |      1 | 5.465e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2642.385011083353 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.760462962919227, dt = 0.04011581951866468 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (2.7%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 165.25 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3025238185191364e-19,-1.6737039988760116e-19,4.903224923461398e-19)
    sum a = (1.154110901214993e-19,-6.727675430006607e-21,1.839021138413817e-19)
    sum e = 7.856888795158472e-10
    sum de = 9.719372197498075e-24
Info: cfl dt = 0.04011570532601512 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4362e+04 | 2592 |      1 | 4.768e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3028.8488163591664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.800578782437892, dt = 0.04011570532601512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (2.2%)
   patch tree reduce : 1.59 us    (0.9%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 167.41 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1675193312991583e-19,-1.6782597430437013e-19,4.993953881210672e-19)
    sum a = (1.9657810144961565e-19,-3.1388972048525434e-20,6.151392571976304e-20)
    sum e = 7.85689026376544e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.040115592874095274 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9924e+04 | 2592 |      1 | 4.325e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3338.7410391403 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 16.84069448776391, dt = 0.040115592874095274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.5%)
   patch tree reduce : 1.79 us    (1.2%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 137.96 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0648528225174613e-19,-1.6957309603071678e-19,4.994082114762894e-19)
    sum a = (-4.1004162294149634e-20,-9.3789598650714e-20,-1.6683322456421715e-20)
    sum e = 7.856891649116831e-10
    sum de = 6.4106497472859645e-24
Info: cfl dt = 0.04011548218958405 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9475e+04 | 2592 |      1 | 4.358e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3313.738591635401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 16.880810080638003, dt = 0.04011548218958405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.5%)
   patch tree reduce : 1.61 us    (1.1%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.6%)
   LB compute        : 136.65 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1315663349460288e-19,-1.745844146151755e-19,4.971704874655819e-19)
    sum a = (2.751685909184218e-19,9.159983941918816e-20,1.5519688622833215e-21)
    sum e = 7.856892949933107e-10
    sum de = -6.2038545941477076e-24
Info: cfl dt = 0.040115373298402535 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0323e+04 | 2592 |      1 | 4.297e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3360.9581252910716 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.920925562827588, dt = 0.040115373298402535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (3.3%)
   patch tree reduce : 1.24 us    (0.8%)
   gen split merge   : 831.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 132.14 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.581112026317531e-20,-1.671908813843297e-19,4.975985040278805e-19)
    sum a = (-1.817663871385046e-19,2.779374622838653e-20,1.1698516973266978e-19)
    sum e = 7.856894165077776e-10
    sum de = 0
Info: cfl dt = 0.04011526622571078 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0472e+04 | 2592 |      1 | 4.286e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3369.2621804492674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 16.96104093612599, dt = 0.04011526622571078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.8%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.9%)
   LB compute        : 139.30 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.123974797324847e-19,-1.6735766516540111e-19,5.046067182281414e-19)
    sum a = (-1.7996873732084814e-19,-4.4492725187797076e-20,1.4012298325779623e-19)
    sum e = 7.85689529353877e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.040115160995825266 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9643e+04 | 2592 |      1 | 4.346e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3323.0716528815387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.0011562023517, dt = 0.040115160995825266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (3.1%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 133.05 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1914113133363843e-19,-1.7059967895903569e-19,5.106918640354679e-19)
    sum a = (-4.3873171966570296e-21,-1.0054511523875622e-19,1.6701032910389e-20)
    sum e = 7.856896334437717e-10
    sum de = 9.305781891221561e-25
Info: cfl dt = 0.040115057632365364 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8731e+04 | 2592 |      1 | 4.413e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3272.2313284965003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.041271363347526, dt = 0.001573327968355187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.38 us    (2.9%)
   patch tree reduce : 1.58 us    (1.0%)
   gen split merge   : 1.14 us    (0.8%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (1.1%)
   LB compute        : 132.44 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1605193420640427e-19,-1.7187643755896174e-19,5.082425945333293e-19)
    sum a = (2.982718417742262e-20,-7.745111053583946e-20,2.3190856479713782e-20)
    sum e = 7.856791507125558e-10
    sum de = 2.1713491079516976e-24
Info: cfl dt = 0.04011505361664992 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9756e+04 | 2592 |      1 | 4.338e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 130.57779177904578 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 473                                                     [SPH][rank=0]
Info: time since start : 135.34549062000002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000805756 s
sph::RenderFieldGetter compute custom field took :  0.0007261370000000001 s
rho_t_ampl=0.000661261, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000205493, eps_t_phi=2.04192e-12 rad
vx_t_ampl=1.13432e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17.41s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 17.04284469131588, dt = 0.04011505361664992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.85 us   (5.1%)
   patch tree reduce : 1.91 us    (0.9%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.7%)
   LB compute        : 184.96 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1488855571380756e-19,-1.7496645628117655e-19,5.091780022949158e-19)
    sum a = (-4.293326730870969e-20,-6.6847984419540715e-22,1.64082586263556e-19)
    sum e = 7.856896965507712e-10
    sum de = 2.7917345673664684e-24
Info: cfl dt = 0.04011495221550321 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0262e+04 | 2592 |      1 | 4.301e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3357.5100599723887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.08295974493253, dt = 0.04011495221550321 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (2.5%)
   patch tree reduce : 1.47 us    (1.0%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 132.55 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.17767424525996e-19,-1.7345677550423698e-19,5.185861070494938e-19)
    sum a = (-1.039186195322037e-19,-6.186960665883733e-20,-1.042343589724655e-19)
    sum e = 7.856897974265787e-10
    sum de = -2.5849394142282115e-24
Info: cfl dt = 0.040114852728275245 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4525e+04 | 2592 |      1 | 4.754e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3037.895143369589 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.123074697148034, dt = 0.040114852728275245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (2.6%)
   patch tree reduce : 1.55 us    (1.0%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.7%)
   LB compute        : 139.14 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2342985713261778e-19,-1.7716504444938893e-19,5.090230003717204e-19)
    sum a = (-1.093805829635475e-19,1.7532297715309122e-20,4.203590659884815e-20)
    sum e = 7.856898752503003e-10
    sum de = -5.583469134732937e-24
Info: cfl dt = 0.04011475517438035 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9996e+04 | 2592 |      1 | 4.320e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3342.693618619762 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.16318954987631, dt = 0.04011475517438035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.9%)
   patch tree reduce : 1.58 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 139.89 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2767585999260345e-19,-1.74861702921144e-19,5.13643065554426e-19)
    sum a = (-2.2240576126124682e-19,-5.870445692686878e-20,4.512605620477435e-21)
    sum e = 7.856899433389827e-10
    sum de = 1.8611563782443123e-24
Info: cfl dt = 0.04011465957435074 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8176e+04 | 2592 |      1 | 4.455e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3241.275669688379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.20330430505069, dt = 0.04011465957435074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (2.9%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.7%)
   LB compute        : 142.02 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3911246212321504e-19,-1.7874702558462549e-19,5.130714681766114e-19)
    sum a = (-1.909123824630713e-19,3.8506115592912834e-20,1.3720770341966904e-19)
    sum e = 7.856900024258728e-10
    sum de = -9.822769774067204e-24
Info: cfl dt = 0.040114565947864916 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7496e+04 | 2592 |      1 | 4.508e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3203.3620806911567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.24341896462504, dt = 0.040114565947864916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (2.8%)
   patch tree reduce : 1.96 us    (1.2%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.8%)
   LB compute        : 148.39 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4555705315141312e-19,-1.7526140887922894e-19,5.212370049816903e-19)
    sum a = (1.0616321701933235e-19,-1.9309163747439532e-20,5.929848370047277e-20)
    sum e = 7.856900524976577e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.04011447431382085 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9378e+04 | 2592 |      1 | 4.365e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3308.2027201144106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.283533530572903, dt = 0.04011447431382085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (3.0%)
   patch tree reduce : 1.81 us    (1.1%)
   gen split merge   : 862.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 144.09 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3606598793497453e-19,-1.7719133548876965e-19,5.220530852167592e-19)
    sum a = (-9.611675359597614e-20,8.004285757713477e-20,-1.1784904694864337e-19)
    sum e = 7.856900935552616e-10
    sum de = -6.4106497472859645e-24
Info: cfl dt = 0.04011438469033534 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9054e+04 | 2592 |      1 | 4.389e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3290.1612770586826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.323648004886724, dt = 0.04011438469033534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (2.4%)
   patch tree reduce : 1.63 us    (0.9%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.8%)
   LB compute        : 155.82 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4390071767042798e-19,-1.7198981766629106e-19,5.13772553178091e-19)
    sum a = (3.427891442056241e-19,-3.216464757220757e-20,2.0334203404774607e-19)
    sum e = 7.856901256117111e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040114297094743866 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0458e+04 | 2592 |      1 | 4.287e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3368.359663061072 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.363762389577058, dt = 0.040114297094743866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (3.2%)
   patch tree reduce : 1.87 us    (1.2%)
   gen split merge   : 1.11 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 140.30 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.211228184269599e-19,-1.7552801645044902e-19,5.283716672348368e-19)
    sum a = (1.310772632124836e-19,-2.021391890316324e-19,-9.033751111653405e-20)
    sum e = 7.856901486917829e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.040114211543600814 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0546e+04 | 2592 |      1 | 4.281e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3373.2748007882724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.4038766866718, dt = 0.0015817214805906588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.9%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 138.43 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2490215533793787e-19,-1.7925682527011717e-19,5.223384041902991e-19)
    sum a = (1.0498997938696789e-19,1.5539781615020052e-19,5.147381880820733e-20)
    sum e = 7.85679240711809e-10
    sum de = -5.37667398159468e-24
Info: cfl dt = 0.040114208212223196 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0059e+04 | 2592 |      1 | 4.316e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 131.94082420734955 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 483                                                     [SPH][rank=0]
Info: time since start : 135.964603871 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006864470000000001 s
sph::RenderFieldGetter compute custom field took :  0.0005306940000000001 s
rho_t_ampl=0.000682802, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000214429, eps_t_phi=2.28084e-12 rad
vx_t_ampl=7.99263e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 17.77s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 17.40545840815239, dt = 0.040114208212223196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.09 us   (5.3%)
   patch tree reduce : 1.65 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 204.11 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2108995462773401e-19,-1.727271991614221e-19,5.245153886888269e-19)
    sum a = (7.550457872149458e-20,3.398439059239052e-20,-7.295228823311567e-20)
    sum e = 7.856901602985306e-10
    sum de = -4.03250548619601e-24
Info: cfl dt = 0.040114124799616194 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0931e+04 | 2592 |      1 | 6.333e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2280.449855760895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.445572616364615, dt = 0.040114124799616194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (2.8%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 1.07 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.9%)
   LB compute        : 155.62 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1846085068966238e-19,-1.738059533710121e-19,5.190933441117972e-19)
    sum a = (-1.2624299834635442e-19,-1.3931272589974784e-20,1.4320081342391648e-19)
    sum e = 7.856901632903095e-10
    sum de = -6.514047323855093e-24
Info: cfl dt = 0.04011404346631245 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.7850e+04 | 2592 |      1 | 5.417e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2665.9163022881776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.48568674116423, dt = 0.04011404346631245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (3.2%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.8%)
   LB compute        : 154.35 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 762.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2777116501035854e-19,-1.7532220690779685e-19,5.291731040137279e-19)
    sum a = (-1.6800960078254482e-19,-2.589578736604595e-19,6.930850653077061e-20)
    sum e = 7.856901602097557e-10
    sum de = 5.0664812518872945e-24
Info: cfl dt = 0.04011396422289691 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.7930e+04 | 2592 |      1 | 5.408e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2670.3626260942146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.525800784630544, dt = 0.04011396422289691 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.7%)
   patch tree reduce : 1.44 us    (0.8%)
   gen split merge   : 941.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 153.36 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3509321947788803e-19,-1.906334509671415e-19,5.304712833597827e-19)
    sum a = (2.1660530069787627e-20,-9.749453628496787e-20,1.0598795128954639e-19)
    sum e = 7.856901475122411e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.040113887082863106 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5474e+04 | 2592 |      1 | 1.018e-01 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1419.2436378518935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.56591474885344, dt = 0.040113887082863106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (3.0%)
   patch tree reduce : 1.42 us    (0.8%)
   gen split merge   : 941.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 154.10 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3065660658239215e-19,-1.9130222928138846e-19,5.354585510373339e-19)
    sum a = (-5.47050801914254e-20,-2.2265814496936442e-20,4.0781344494479904e-20)
    sum e = 7.856901261388606e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.040113812058840154 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.8528e+04 | 2592 |      1 | 5.341e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2703.6539151021775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.606028635936305, dt = 0.040113812058840154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (1.9%)
   patch tree reduce : 1.08 us    (0.7%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.7%)
   LB compute        : 143.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3418124904936944e-19,-1.9068397905845132e-19,5.357866009948797e-19)
    sum a = (7.46501199416213e-20,-2.2134315652799513e-19,4.3864240706186256e-21)
    sum e = 7.856900961769346e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.04011373916268304 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.8645e+04 | 2592 |      1 | 5.328e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2710.211822420871 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.646142447995146, dt = 0.04011373916268304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (1.4%)
   patch tree reduce : 891.00 ns  (0.5%)
   gen split merge   : 451.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.4%)
   LB compute        : 153.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 1.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.28604262320735e-19,-2.0355714001272484e-19,5.352325873670215e-19)
    sum a = (2.2031233725055727e-19,-1.3602328425211322e-19,-1.2815033268727305e-19)
    sum e = 7.856900577280204e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.04011366840547382 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0805e+04 | 2592 |      1 | 5.102e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2830.5121565503678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.68625618715783, dt = 0.04011366840547382 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (1.5%)
   patch tree reduce : 341.00 ns  (0.2%)
   gen split merge   : 451.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 751.00 ns  (0.5%)
   LB compute        : 155.00 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 1.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1684888133763222e-19,-2.0729662956714142e-19,5.274337349705284e-19)
    sum a = (-1.60289894344382e-19,-3.5107966659401325e-20,-4.736033420469038e-20)
    sum e = 7.856900109033347e-10
    sum de = 2.5849394142282115e-24
Info: cfl dt = 0.04011359979752377 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0097e+04 | 2592 |      1 | 4.313e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3348.204214724031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.726369855563306, dt = 0.04011359979752377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (2.1%)
   patch tree reduce : 1.14 us    (0.6%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 171.01 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3100989242407053e-19,-2.0669070326891397e-19,5.271543330827494e-19)
    sum a = (-7.751584323411937e-20,-7.123288176223131e-20,-1.680395985553132e-19)
    sum e = 7.856899558237417e-10
    sum de = -5.997059441009451e-24
Info: cfl dt = 0.04011353334837579 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0066e+04 | 2592 |      1 | 4.315e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3346.4601739422296 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.76648345536083, dt = 0.0015886696280666968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (2.0%)
   patch tree reduce : 1.17 us    (0.7%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 164.67 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (58.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2947022343033733e-19,-2.07528319351684e-19,5.24466933819208e-19)
    sum a = (3.912763935835101e-20,-4.0339723028394206e-20,1.5858200625710904e-19)
    sum e = 7.856792008543035e-10
    sum de = -1.6026624368214911e-24
Info: cfl dt = 0.040113530761044035 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9890e+04 | 2592 |      1 | 4.328e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.14570920479858 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 493                                                     [SPH][rank=0]
Info: time since start : 136.928953119 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009013300000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007871480000000001 s
rho_t_ampl=0.000696851, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000223361, eps_t_phi=2.55396e-12 rad
vx_t_ampl=4.62909e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.13s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 17.768072124988898, dt = 0.040113530761044035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.44 us   (5.1%)
   patch tree reduce : 1.88 us    (0.8%)
   gen split merge   : 1.21 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 199.47 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (74.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2799792522501723e-19,-2.0911112208190117e-19,5.310876649170679e-19)
    sum a = (-9.476276506786926e-20,2.5466896171886736e-19,8.18557550323108e-21)
    sum e = 7.856899181462269e-10
    sum de = 1.4992648602523627e-24
Info: cfl dt = 0.04011346656073007 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5063e+04 | 2592 |      1 | 5.752e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2510.580977890513 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.80818565574994, dt = 0.04011346656073007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.4%)
   patch tree reduce : 1.43 us    (0.8%)
   gen split merge   : 1.08 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 157.81 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.343751454648022e-19,-1.92984445004264e-19,5.283995508005783e-19)
    sum a = (6.508346798696316e-20,6.2106932071450266e-21,9.823035143133003e-20)
    sum e = 7.856898290098869e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.040113404541381445 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.4780e+04 | 2592 |      1 | 5.788e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2494.856511218675 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.84829912231067, dt = 0.040113404541381445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.4%)
   patch tree reduce : 1.65 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 154.91 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.284432297045281e-19,-1.9772545884008973e-19,5.341459086798852e-19)
    sum a = (1.3044627826734644e-19,-4.867016337916341e-20,5.504331876354318e-20)
    sum e = 7.856897505764223e-10
    sum de = -1.550963648536927e-25
Info: cfl dt = 0.04011334470505307 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0002e+04 | 2592 |      1 | 5.184e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2785.7707253296862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.88841252685205, dt = 0.04011334470505307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.3%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.0%)
   LB compute        : 153.35 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2180474226089725e-19,-2.0076618186346568e-19,5.354876908429892e-19)
    sum a = (-9.947214749694006e-20,1.4941115520563e-20,1.0780246810776923e-19)
    sum e = 7.856896635596448e-10
    sum de = -8.788794008375919e-25
Info: cfl dt = 0.04011328705831123 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0632e+04 | 2592 |      1 | 4.275e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3378.0041144370157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 17.928525871557103, dt = 0.04011328705831123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (2.0%)
   patch tree reduce : 1.29 us    (0.7%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.5%)
   LB compute        : 158.66 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3055472880479188e-19,-1.9889499929504126e-19,5.408701751637913e-19)
    sum a = (3.8482194341554423e-19,2.6889584161539474e-20,1.0617128762917855e-19)
    sum e = 7.85689569036767e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.04011323160686949 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9404e+04 | 2592 |      1 | 4.363e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3309.591512676536 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 17.968639158615414, dt = 0.04011323160686949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (2.9%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 153.02 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0537202105296892e-19,-1.9758003652851513e-19,5.450963326090761e-19)
    sum a = (-1.9233538496955257e-19,-1.5503718409402721e-19,1.0774570273249146e-19)
    sum e = 7.856894671745796e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.04011317835569301 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.9544e+04 | 2592 |      1 | 5.232e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2760.2404819310555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.008752390222284, dt = 0.04011317835569301 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (3.0%)
   patch tree reduce : 1.77 us    (1.0%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 13.36 us   (7.9%)
   LB compute        : 139.70 us  (82.2%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.246491040838985e-19,-2.0744164108122569e-19,5.494499326386439e-19)
    sum a = (-6.712430991889126e-20,3.911469923740581e-20,-5.369215203026777e-20)
    sum e = 7.856893581523134e-10
    sum de = -2.5849394142282115e-25
Info: cfl dt = 0.040113127309001545 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1270e+04 | 2592 |      1 | 5.056e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2856.4100131335636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.048865568577977, dt = 0.040113127309001545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (3.0%)
   patch tree reduce : 1.45 us    (0.9%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 142.96 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2483560614450544e-19,-2.0198091004235284e-19,5.440582797780631e-19)
    sum a = (4.7504621781031734e-20,-1.7676554389004915e-19,9.044675995848706e-20)
    sum e = 7.856892421563577e-10
    sum de = 7.754818242684634e-25
Info: cfl dt = 0.040113078470273594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9371e+04 | 2592 |      1 | 4.366e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3307.73044204898 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.08897869588698, dt = 0.040113078470273594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.8%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 862.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (1.0%)
   LB compute        : 136.61 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2059042487950042e-19,-2.1339656150095793e-19,5.505773090210502e-19)
    sum a = (-1.4370353487507262e-19,8.532556246299397e-20,-3.535041842996546e-20)
    sum e = 7.856891193798364e-10
    sum de = 4.652890945610781e-25
Info: cfl dt = 0.04011303184225073 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7552e+04 | 2592 |      1 | 4.504e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3206.381347204847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.129091774357253, dt = 0.0015940674681509392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (3.0%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.9%)
   LB compute        : 143.99 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2465033647636946e-19,-2.0801141720030465e-19,5.479979020250345e-19)
    sum a = (-1.625180599318977e-19,-5.166511136656683e-20,4.898766041807951e-20)
    sum e = 7.856790439851022e-10
    sum de = -2.5849394142282115e-26
Info: cfl dt = 0.04011303003472012 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8563e+04 | 2592 |      1 | 4.426e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.65667075588559 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 503                                                     [SPH][rank=0]
Info: time since start : 137.598745446 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000655472 s
sph::RenderFieldGetter compute custom field took :  0.000557565 s
rho_t_ampl=0.000703475, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000232034, eps_t_phi=3.06377e-12 rad
vx_t_ampl=1.33914e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.49s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 18.130685841825404, dt = 0.04011303003472012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.37 us   (5.3%)
   patch tree reduce : 2.07 us    (1.0%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 188.23 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3122227472656788e-19,-2.1018700070905893e-19,5.500301658126108e-19)
    sum a = (4.1414959784473324e-20,2.2989129387379276e-19,1.4190293755136542e-19)
    sum e = 7.856890393835235e-10
    sum de = -6.591595506281939e-25
Info: cfl dt = 0.04011298570130674 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4050e+04 | 2592 |      1 | 5.884e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2454.13532482993 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.170798871860125, dt = 0.04011298570130674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.4%)
   patch tree reduce : 1.26 us    (0.7%)
   gen split merge   : 1.10 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.8%)
   LB compute        : 159.14 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2547193145701684e-19,-1.9530832640702512e-19,5.575858729687703e-19)
    sum a = (2.6390288054378486e-19,-2.784458562716948e-19,2.463719767099294e-19)
    sum e = 7.85688872570825e-10
    sum de = 9.04728794979874e-26
Info: cfl dt = 0.04011294358832425 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4935e+04 | 2592 |      1 | 5.768e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2503.415485985312 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.21091185756143, dt = 0.04011294358832425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.80 us    (2.2%)
   patch tree reduce : 1.90 us    (1.1%)
   gen split merge   : 812.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 152.91 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.57 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1039515006527445e-19,-2.1668129823358616e-19,5.69563860709247e-19)
    sum a = (-3.844571552441368e-19,4.7771213305474843e-20,-1.0833566419812068e-19)
    sum e = 7.856887313321853e-10
    sum de = 2.0356397887047165e-25
Info: cfl dt = 0.04011290368979665 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5409e+04 | 2592 |      1 | 5.708e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2529.8349110758504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.251024801149754, dt = 0.04011290368979665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (2.0%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 145.22 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3882462145671386e-19,-2.0822585349025362e-19,5.581040188500689e-19)
    sum a = (2.236578720117534e-19,-2.527592957699236e-19,4.4024057839667954e-20)
    sum e = 7.856885832454013e-10
    sum de = -4.0874354487483594e-25
Info: cfl dt = 0.04011286600564361 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5615e+04 | 2592 |      1 | 5.682e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2541.3164262027285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.29113770483955, dt = 0.04011286600564361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.48 us    (2.6%)
   patch tree reduce : 2.19 us    (1.3%)
   gen split merge   : 762.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 153.42 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1765199043121505e-19,-2.2439361031692313e-19,5.629257454113697e-19)
    sum a = (-3.504858459843288e-19,-8.394872653384322e-20,1.0209482192171839e-19)
    sum e = 7.856884294424843e-10
    sum de = 4.52364397489937e-25
Info: cfl dt = 0.04011283053496548 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.1709e+04 | 2592 |      1 | 5.013e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2880.82116609336 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.331250570845192, dt = 0.04011283053496548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (3.2%)
   patch tree reduce : 1.61 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 139.59 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4321222107664547e-19,-2.243652652900908e-19,5.681857500908514e-19)
    sum a = (7.651678373765215e-20,-4.4502067621346543e-20,1.0625627099226523e-19)
    sum e = 7.856882701390589e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.04011279727615817 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9220e+04 | 2592 |      1 | 4.377e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3299.28520819004 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.371363401380158, dt = 0.04011279727615817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.6%)
   patch tree reduce : 1.71 us    (1.1%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (1.0%)
   LB compute        : 138.00 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3162773184951738e-19,-2.2537336233134517e-19,5.725314500991409e-19)
    sum a = (1.1809277613833236e-19,-4.9043652113041693e-20,-4.0697944816279894e-21)
    sum e = 7.856881055804363e-10
    sum de = 5.428372769879244e-25
Info: cfl dt = 0.040112766226917194 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0090e+04 | 2592 |      1 | 4.314e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3347.7409237997035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.411476198656317, dt = 0.040112766226917194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.7%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 134.32 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.259998062320828e-19,-2.274302253653959e-19,5.701554558351932e-19)
    sum a = (-2.0399217455497764e-19,2.1689866787436447e-20,8.44150296575502e-20)
    sum e = 7.85687935991144e-10
    sum de = -5.686866711302065e-25
Info: cfl dt = 0.04011273738424315 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0302e+04 | 2592 |      1 | 4.298e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3359.568333217597 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.451588964883236, dt = 0.04011273738424315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.6%)
   patch tree reduce : 1.43 us    (0.9%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.0%)
   LB compute        : 140.96 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4065377430690953e-19,-2.2513715377440905e-19,5.753162592838096e-19)
    sum a = (7.16332231726841e-20,2.0189913887629068e-19,7.215883421855402e-20)
    sum e = 7.856877616089874e-10
    sum de = -5.945360652724886e-25
Info: cfl dt = 0.04011271074444805 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0153e+04 | 2592 |      1 | 4.309e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3351.256286849858 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.491701702267477, dt = 0.0015978563944329949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.6%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 136.22 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 962.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3501188157480393e-19,-2.212000706271468e-19,5.751857439639729e-19)
    sum a = (4.491955533392281e-19,-1.5789925834944328e-19,-1.0609195355148523e-19)
    sum e = 7.856787932807504e-10
    sum de = -1.4734154661100805e-24
Info: cfl dt = 0.04011270972854647 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0385e+04 | 2592 |      1 | 4.292e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 134.00804539776254 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 513                                                     [SPH][rank=0]
Info: time since start : 138.281518048 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000810142 s
sph::RenderFieldGetter compute custom field took :  0.00064758 s
rho_t_ampl=0.000702928, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000240216, eps_t_phi=3.10774e-12 rad
vx_t_ampl=-1.79809e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 18.86s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 18.49329955866191, dt = 0.04011270972854647 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.40 us   (5.4%)
   patch tree reduce : 2.02 us    (1.0%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 184.54 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (79.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1665744970714139e-19,-2.2781103463892595e-19,5.707876986461202e-19)
    sum a = (-6.957594934114305e-20,2.445416482144468e-20,1.571724648085898e-19)
    sum e = 7.856876497302087e-10
    sum de = -1.6026624368214911e-24
Info: cfl dt = 0.04011268536759957 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9688e+04 | 2592 |      1 | 4.343e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3325.3241278359155 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.533412268390457, dt = 0.04011268536759957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.5%)
   patch tree reduce : 1.70 us    (1.1%)
   gen split merge   : 932.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 135.75 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2997386115347418e-19,-2.2318504410039087e-19,5.82372432873219e-19)
    sum a = (-2.0875413906280987e-19,-2.2331642869147577e-19,1.1555542753474004e-19)
    sum e = 7.856874258740405e-10
    sum de = 9.305781891221561e-25
Info: cfl dt = 0.0401126632073787 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0793e+04 | 2592 |      1 | 4.264e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3386.892385351178 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.573524953758056, dt = 0.0401126632073787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (2.1%)
   patch tree reduce : 941.00 ns  (0.7%)
   gen split merge   : 641.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.7%)
   LB compute        : 130.56 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4107525253198164e-19,-2.371086142374221e-19,5.861729832586336e-19)
    sum a = (2.4092122574511627e-19,8.408928346264179e-22,-1.6007992219904012e-19)
    sum e = 7.856872392604536e-10
    sum de = 1.1632227364026952e-24
Info: cfl dt = 0.04011264323455182 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1280e+04 | 2592 |      1 | 4.230e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3414.0544123554128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.613637616965434, dt = 0.04011264323455182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (3.1%)
   patch tree reduce : 1.86 us    (1.3%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 129.76 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2244065677591832e-19,-2.3258450147648725e-19,5.742235204744877e-19)
    sum a = (1.7911099216105228e-19,-9.643822509764218e-20,2.0779348717864747e-19)
    sum e = 7.85687047980296e-10
    sum de = 5.169878828456423e-26
Info: cfl dt = 0.04011262544282623 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0227e+04 | 2592 |      1 | 4.304e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3355.390285400514 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.653750260199985, dt = 0.04011262544282623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.2%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 752.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.6%)
   LB compute        : 149.77 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1637235624885673e-19,-2.3838989160974167e-19,5.899368502080691e-19)
    sum a = (-1.6518002766919522e-19,1.7508219847407525e-19,-5.78495889511246e-20)
    sum e = 7.856868531488824e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.040112609825141615 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1041e+04 | 2592 |      1 | 4.246e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3400.712907445472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.69386288564281, dt = 0.040112609825141615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.5%)
   patch tree reduce : 1.45 us    (0.9%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 148.39 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3007163095617122e-19,-2.2592465256335956e-19,5.8228853161079345e-19)
    sum a = (2.86592047529343e-19,4.8380390680715556e-21,-6.296092411860119e-20)
    sum e = 7.856866550098213e-10
    sum de = 3.360421238496675e-24
Info: cfl dt = 0.04011259637379075 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9824e+04 | 2592 |      1 | 4.333e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3332.933089425366 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.733975495467952, dt = 0.04011259637379075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.2%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.7%)
   LB compute        : 167.69 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0948574712107037e-19,-2.2914612648247794e-19,5.796604909776827e-19)
    sum a = (-2.455122984969738e-19,5.4038837267939026e-21,1.8232764658259962e-20)
    sum e = 7.856864538148745e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.040112585080425714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0195e+04 | 2592 |      1 | 4.306e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3353.603076098046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 18.774088091841744, dt = 0.040112585080425714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.8%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.8%)
   LB compute        : 136.31 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 902.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2986787540097066e-19,-2.289185446728386e-19,5.820202991342831e-19)
    sum a = (2.516512561923711e-19,-1.7392913164035676e-19,3.2913590690924345e-20)
    sum e = 7.856862498161492e-10
    sum de = -2.5332406259436473e-24
Info: cfl dt = 0.04011257593606517 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9743e+04 | 2592 |      1 | 4.339e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3328.3811950222466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.81420067692217, dt = 0.04011257593606517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.8%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 136.54 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 932.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0977166217433565e-19,-2.3949041808631883e-19,5.836349909818543e-19)
    sum a = (5.0557668729117415e-20,1.274131806723846e-19,8.392217156376865e-21)
    sum e = 7.856860432660755e-10
    sum de = -2.3781442610899546e-24
Info: cfl dt = 0.040112568931102044 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9354e+04 | 2592 |      1 | 4.367e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3306.6996502453485 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.854313252858233, dt = 0.0016000226401864381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.6%)
   patch tree reduce : 1.99 us    (1.3%)
   gen split merge   : 872.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 133.95 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 862.00 ns  (12.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1389606897718554e-19,-2.332389018785729e-19,5.831566109903169e-19)
    sum a = (-2.6588785401702895e-19,2.8554689206136394e-19,7.396235970705726e-21)
    sum e = 7.85678478687681e-10
    sum de = -1.137373342260413e-24
Info: cfl dt = 0.04011256869560718 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1610e+04 | 2592 |      1 | 4.207e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 136.91312117022878 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 523                                                     [SPH][rank=0]
Info: time since start : 138.889116492 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007973230000000001 s
sph::RenderFieldGetter compute custom field took :  0.000725246 s
rho_t_ampl=0.00069563, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000247702, eps_t_phi=3.36753e-12 rad
vx_t_ampl=-4.71239e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19.22s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 18.85591327549842, dt = 0.04011256869560718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.75 us   (4.8%)
   patch tree reduce : 2.18 us    (1.0%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.6%)
   LB compute        : 198.54 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (74.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2466553598351145e-19,-2.2165564504391573e-19,5.83452496217549e-19)
    sum a = (-1.673556111779495e-19,7.237747910706727e-20,-6.721548768633211e-20)
    sum e = 7.856859119546008e-10
    sum de = -4.03250548619601e-24
Info: cfl dt = 0.04011256389657042 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8899e+04 | 2592 |      1 | 4.401e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3281.3602176386657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.89602584419403, dt = 0.04011256389657042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.2%)
   patch tree reduce : 1.44 us    (0.8%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 153.93 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2934041142339505e-19,-2.2303633540889367e-19,5.792598767275513e-19)
    sum a = (3.7480505741149135e-19,-5.1809198586297865e-20,6.852538036937043e-20)
    sum e = 7.856856550736507e-10
    sum de = 4.1359030627651384e-24
Info: cfl dt = 0.04011256122372332 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9691e+04 | 2592 |      1 | 4.342e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3325.51918427263 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 18.9361384080906, dt = 0.04011256122372332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (1.8%)
   patch tree reduce : 721.00 ns  (0.5%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.3%)
   LB compute        : 141.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 1.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0355383136079626e-19,-2.2761508423604156e-19,5.847310623646337e-19)
    sum a = (4.5713544723220435e-20,-1.914018813710236e-19,3.711623834246389e-20)
    sum e = 7.856854430809629e-10
    sum de = 3.2053248736429822e-24
Info: cfl dt = 0.04011256065719387 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0415e+04 | 2592 |      1 | 4.290e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3365.8375966411822 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 18.97625096931432, dt = 0.04011256065719387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.7%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 921.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.9%)
   LB compute        : 146.03 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0833715733812533e-19,-2.3809493901168926e-19,5.855899391602286e-19)
    sum a = (1.4108429007676875e-19,-1.2905730616077647e-19,-5.477177390745363e-20)
    sum e = 7.856852287819546e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.040112562185039224 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9480e+04 | 2592 |      1 | 4.358e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3313.746031700708 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.016363529971514, dt = 0.040112562185039224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (3.3%)
   patch tree reduce : 1.88 us    (1.3%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 132.36 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0081627688527918e-19,-2.420196982342418e-19,5.815499712408644e-19)
    sum a = (2.0938841038786965e-19,-5.613134500766382e-20,-9.930621263206806e-20)
    sum e = 7.856850132037637e-10
    sum de = -4.8596860987490376e-24
Info: cfl dt = 0.040112565794617625 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9363e+04 | 2592 |      1 | 4.366e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3307.2392405163464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.056476092156554, dt = 0.040112565794617625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (2.7%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.9%)
   LB compute        : 131.40 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 842.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.073366328277448e-20,-2.428051430357407e-19,5.766733490314688e-19)
    sum a = (-1.699288466573371e-19,3.5646202838354064e-20,-2.517340940253207e-19)
    sum e = 7.856847965874144e-10
    sum de = 2.9985297205047253e-24
Info: cfl dt = 0.04011257147271148 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9629e+04 | 2592 |      1 | 4.347e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3322.0385861636646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.096588657951173, dt = 0.04011257147271148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.9%)
   patch tree reduce : 1.49 us    (1.0%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.8%)
   LB compute        : 132.18 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0545993171589819e-19,-2.395253358729963e-19,5.635185104821352e-19)
    sum a = (1.534706560050087e-19,-7.949341432914915e-20,1.3714712635919977e-20)
    sum e = 7.856845791783918e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.04011257920553457 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9133e+04 | 2592 |      1 | 4.383e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3294.4327004472125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.136701229423885, dt = 0.04011257920553457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.8%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 151.19 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.281394177377366e-20,-2.4502386028097894e-19,5.693925600937862e-19)
    sum a = (1.9576307922881345e-19,9.223893601008155e-20,-2.2329924508479676e-19)
    sum e = 7.856843612201191e-10
    sum de = -1.5509636485369269e-24
Info: cfl dt = 0.040112588978740815 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7867e+04 | 2592 |      1 | 4.479e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3223.862323879512 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.17681380862942, dt = 0.040112588978740815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (2.9%)
   patch tree reduce : 2.00 us    (1.2%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.8%)
   LB compute        : 154.52 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.404259376038218e-20,-2.378846106966435e-19,5.556818286804815e-19)
    sum a = (1.5307957679422057e-20,3.9328734357930633e-20,6.664000785900975e-20)
    sum e = 7.856841429537823e-10
    sum de = 1.34416849539867e-24
Info: cfl dt = 0.040112600777432846 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7980e+04 | 2592 |      1 | 4.471e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3230.154292420886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.21692639760816, dt = 0.0016005947267707654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (3.1%)
   patch tree reduce : 1.81 us    (1.2%)
   gen split merge   : 931.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 132.87 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.769376185437917e-20,-2.38886545775543e-19,5.616035993667172e-19)
    sum a = (5.296658521237554e-20,1.3155652748608715e-19,2.0844713301497087e-19)
    sum e = 7.856781331216479e-10
    sum de = 5.583469134732937e-24
Info: cfl dt = 0.040112601289725686 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9741e+04 | 2592 |      1 | 4.339e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 132.80708602673292 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 533                                                     [SPH][rank=0]
Info: time since start : 139.50449419 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000821991 s
sph::RenderFieldGetter compute custom field took :  0.000650975 s
rho_t_ampl=0.000682147, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000254319, eps_t_phi=3.52518e-12 rad
vx_t_ampl=-7.34366e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19.58s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 19.21852699233493, dt = 0.040112601289725686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.68 us   (5.6%)
   patch tree reduce : 2.46 us    (1.1%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 197.75 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (74.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.544587798732792e-20,-2.3352974650172204e-19,5.700784439717076e-19)
    sum a = (9.62252041334216e-21,-3.4005827481739096e-20,6.88005392148796e-20)
    sum e = 7.856840051917229e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.040112615169823514 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.4175e+04 | 2592 |      1 | 5.868e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2461.0510472731676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.258639593624654, dt = 0.040112615169823514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (2.6%)
   patch tree reduce : 1.86 us    (1.0%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.8%)
   LB compute        : 159.95 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.593226221587117e-20,-2.3821941065125733e-19,5.700374194554292e-19)
    sum a = (1.5574811729136327e-19,-2.3619092955162596e-19,-1.1568655384889614e-19)
    sum e = 7.856837398978159e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.040112631052199574 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.4158e+04 | 2592 |      1 | 5.870e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2460.126861316701 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.29875220879448, dt = 0.040112631052199574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (2.6%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.9%)
   LB compute        : 153.54 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (57.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.708532746426014e-20,-2.5174615041263584e-19,5.616967975192624e-19)
    sum a = (2.7280239737415734e-20,-1.0856241557446001e-20,9.212094294905731e-20)
    sum e = 7.856835227933528e-10
    sum de = 5.686866711302065e-24
Info: cfl dt = 0.040112648911370875 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.4821e+04 | 2592 |      1 | 5.783e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2497.087031614301 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.33886483984668, dt = 0.040112648911370875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.57 us    (2.6%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.6%)
   LB compute        : 159.85 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.837030201399265e-20,-2.476615909663474e-19,5.695598652856253e-19)
    sum a = (2.794967532764722e-19,-9.370177263453323e-20,2.4436886491976125e-20)
    sum e = 7.856833056690645e-10
    sum de = 6.824240053562478e-24
Info: cfl dt = 0.040112668730414525 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.8370e+04 | 2592 |      1 | 5.359e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2694.788029660625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.37897748875805, dt = 0.040112668730414525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (3.1%)
   patch tree reduce : 1.93 us    (1.3%)
   gen split merge   : 1.11 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 130.92 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.213229881647775e-20,-2.530865826235621e-19,5.691826006214986e-19)
    sum a = (7.334871349227585e-20,1.8218961245641887e-19,-1.9499611115187906e-20)
    sum e = 7.856830894103352e-10
    sum de = 2.1713491079516976e-24
Info: cfl dt = 0.040112690491790726 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9616e+04 | 2592 |      1 | 4.348e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3321.3162801288163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.419090157488466, dt = 0.040112690491790726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.3%)
   patch tree reduce : 1.75 us    (1.0%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 152.12 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.308206261410613e-20,-2.4024012350615955e-19,5.67519213669293e-19)
    sum a = (-5.909897014792762e-20,3.2781979317748155e-20,1.1804203133167222e-19)
    sum e = 7.856828742314077e-10
    sum de = 2.68833699079734e-24
Info: cfl dt = 0.04011271417746459 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8551e+04 | 2592 |      1 | 4.427e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3261.9869351373477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.459202847980258, dt = 0.04011271417746459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (3.1%)
   patch tree reduce : 1.48 us    (0.9%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 149.35 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.832055221071385e-20,-2.4192562560895767e-19,5.750127825996219e-19)
    sum a = (1.5389131263510017e-19,-1.6884708159599961e-19,8.608480633010429e-20)
    sum e = 7.856826603486288e-10
    sum de = -7.237830359838992e-24
Info: cfl dt = 0.04011273976891442 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8599e+04 | 2592 |      1 | 4.423e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3264.666863191588 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.499315562157722, dt = 0.04011273976891442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.5%)
   patch tree reduce : 1.35 us    (0.8%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.9%)
   LB compute        : 146.39 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.775155437966591e-20,-2.5274479911161275e-19,5.778249345177994e-19)
    sum a = (2.40563010333554e-21,4.862294373209452e-20,-4.985241572503354e-21)
    sum e = 7.856824479737364e-10
    sum de = 8.995589161514176e-24
Info: cfl dt = 0.04011276724714116 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9405e+04 | 2592 |      1 | 4.363e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3309.601804789457 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.539428301926637, dt = 0.04011276724714116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.4%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 134.10 us  (82.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.096234756403588e-20,-2.464271445079247e-19,5.757984281167964e-19)
    sum a = (-3.662670423726037e-21,-1.858064087553246e-20,1.4780938180000266e-19)
    sum e = 7.856822373138463e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.040112796592678024 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9858e+04 | 2592 |      1 | 4.330e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3334.8409261040883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.57954106917378, dt = 0.0015996399976572206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (2.3%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 742.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.9%)
   LB compute        : 130.96 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.095248842426811e-20,-2.4781358603776713e-19,5.79099377497931e-19)
    sum a = (2.2930715909868485e-19,1.243867898278556e-19,1.4907360091831578e-20)
    sum e = 7.856777888552992e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.040112797801065345 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1028e+04 | 2592 |      1 | 4.247e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 135.5873810365825 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 543                                                     [SPH][rank=0]
Info: time since start : 140.185204021 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000785807 s
sph::RenderFieldGetter compute custom field took :  0.000704975 s
rho_t_ampl=0.000663165, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000259927, eps_t_phi=3.68328e-12 rad
vx_t_ampl=-9.64286e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 19.94s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 19.581140709171436, dt = 0.040112797801065345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.68 us   (5.1%)
   patch tree reduce : 2.23 us    (1.0%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.6%)
   LB compute        : 200.05 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1228090233325676e-20,-2.427081948280243e-19,5.7959105572420195e-19)
    sum a = (1.3386082700691695e-19,3.57387718806365e-20,5.629808174883312e-20)
    sum e = 7.856821052663331e-10
    sum de = 2.68833699079734e-24
Info: cfl dt = 0.04011282905840716 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0669e+04 | 2592 |      1 | 4.272e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3379.980456478888 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.6212535069725, dt = 0.04011282905840716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (2.1%)
   patch tree reduce : 1.27 us    (0.8%)
   gen split merge   : 681.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.7%)
   LB compute        : 136.37 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.808631102733008e-20,-2.430462811625607e-19,5.826794798780216e-19)
    sum a = (1.226969944098803e-19,4.542315502619824e-20,1.6770493679866392e-19)
    sum e = 7.856818542633336e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.04011286215109029 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9831e+04 | 2592 |      1 | 4.332e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3333.324283505411 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.66136633603091, dt = 0.04011286215109029 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (2.1%)
   patch tree reduce : 771.00 ns  (0.5%)
   gen split merge   : 651.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.7%)
   LB compute        : 131.11 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.327833720058159e-20,-2.410354274474262e-19,5.916410269561801e-19)
    sum a = (1.1326508403204833e-20,-9.042321190518969e-20,3.418885629680291e-20)
    sum e = 7.856816505544257e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.04011289704902771 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1187e+04 | 2592 |      1 | 4.236e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3408.85402550205 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 19.701479198182, dt = 0.04011289704902771 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (2.2%)
   patch tree reduce : 1.42 us    (0.9%)
   gen split merge   : 741.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.9%)
   LB compute        : 144.84 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5168005656070573e-20,-2.473978589775596e-19,5.9033458496296905e-19)
    sum a = (-8.026161365944292e-20,2.0197083748045144e-19,7.647100722130156e-20)
    sum e = 7.856814488246054e-10
    sum de = 4.239300639334267e-24
Info: cfl dt = 0.040112933731067314 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0037e+04 | 2592 |      1 | 4.317e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3344.79630255485 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 19.741592095231027, dt = 0.040112933731067314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (2.6%)
   patch tree reduce : 1.59 us    (1.1%)
   gen split merge   : 1.06 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.8%)
   LB compute        : 128.34 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.008114364034193e-20,-2.3341472320443145e-19,5.942500911915157e-19)
    sum a = (-1.221021596438916e-19,-2.1388730884815817e-19,-2.1648706833750653e-20)
    sum e = 7.856812497816718e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.04011297217553205 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0921e+04 | 2592 |      1 | 4.255e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3394.068529096159 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.781705028962094, dt = 0.04011297217553205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (3.0%)
   patch tree reduce : 1.59 us    (1.1%)
   gen split merge   : 1.03 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.9%)
   LB compute        : 132.71 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.602949130022899e-20,-2.5033300704592235e-19,5.914137624228453e-19)
    sum a = (-1.9041120952487638e-19,-6.639377237413614e-20,-1.0248115547139295e-19)
    sum e = 7.856810535950364e-10
    sum de = -1.1994118882018901e-23
Info: cfl dt = 0.04011301236033749 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8801e+04 | 2592 |      1 | 4.408e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3275.925623421586 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.821818001137625, dt = 0.04011301236033749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (3.1%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 811.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 152.70 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.470224791594277e-20,-2.500462703976764e-19,5.856817196851847e-19)
    sum a = (2.4664117000038333e-19,2.6512950259375905e-20,-9.208494472714647e-21)
    sum e = 7.856808604340758e-10
    sum de = -7.651420666115506e-24
Info: cfl dt = 0.040113054263000845 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7849e+04 | 2592 |      1 | 4.481e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3222.917798561673 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.861931013497962, dt = 0.040113054263000845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.7%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.9%)
   LB compute        : 132.11 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.592715941818876e-20,-2.4712508944398464e-19,5.871830625484841e-19)
    sum a = (9.846980162055025e-20,-5.676268619124964e-20,-2.813422380826181e-21)
    sum e = 7.856806704620441e-10
    sum de = -4.652890945610781e-24
Info: cfl dt = 0.04011309786065095 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8398e+04 | 2592 |      1 | 4.439e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3253.4873395975633 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 19.90204406776096, dt = 0.04011309786065095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (3.1%)
   patch tree reduce : 1.80 us    (1.2%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 136.20 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.531917913250969e-20,-2.5106258338873723e-19,5.87198470398094e-19)
    sum a = (1.124894983703172e-19,-1.930981636985873e-19,-1.9163585682650737e-20)
    sum e = 7.856804838358313e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04011314313003846 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.2576e+04 | 2592 |      1 | 4.930e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2929.152825854412 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.942157165621612, dt = 0.0015972603863332324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (2.9%)
   patch tree reduce : 1.81 us    (1.1%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 148.12 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4734203506288756e-20,-2.5411234395690034e-19,5.868399333115497e-19)
    sum a = (2.6253246011606503e-20,-6.88705522818602e-20,4.6962204011821064e-20)
    sum e = 7.856774744110743e-10
    sum de = -5.686866711302065e-24
Info: cfl dt = 0.04011314496659675 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8489e+04 | 2592 |      1 | 4.432e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 129.75348466770478 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 553                                                     [SPH][rank=0]
Info: time since start : 140.811609889 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008463670000000001 s
sph::RenderFieldGetter compute custom field took :  0.000679177 s
rho_t_ampl=0.000639468, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000264421, eps_t_phi=3.94484e-12 rad
vx_t_ampl=-1.15725e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20.31s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 19.943754426007946, dt = 0.04011314496659675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.20 us   (5.4%)
   patch tree reduce : 1.73 us    (0.8%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 181.48 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.37482895295119e-20,-2.5676773893435265e-19,5.887765450612263e-19)
    sum a = (1.1248621199039462e-19,1.0664480968027362e-19,-6.232942629988564e-20)
    sum e = 7.856803677488517e-10
    sum de = -1.7577588016751838e-24
Info: cfl dt = 0.040113191940333276 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9378e+04 | 2592 |      1 | 4.365e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3308.117362015279 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 19.983867570974542, dt = 0.040113191940333276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (2.2%)
   patch tree reduce : 1.30 us    (0.9%)
   gen split merge   : 971.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 133.66 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (54.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.762905011365018e-20,-2.489740889479316e-19,5.840842973153595e-19)
    sum a = (9.264305001779901e-20,2.282381228172253e-19,2.0284950099557324e-20)
    sum e = 7.856801498274463e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.04011324054645267 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0509e+04 | 2592 |      1 | 4.284e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3371.1353475460196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.023980762914874, dt = 0.04011324054645267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (2.5%)
   patch tree reduce : 1.18 us    (0.8%)
   gen split merge   : 801.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 130.99 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4079759797253484e-20,-2.3738384855593893e-19,5.865549555669643e-19)
    sum a = (-1.298284388418996e-19,-7.898265344171718e-21,2.7169428209297524e-20)
    sum e = 7.856799746526565e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.04011329075131807 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1691e+04 | 2592 |      1 | 4.202e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3437.001406102348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.064094003461328, dt = 0.04011329075131807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (1.6%)
   patch tree reduce : 781.00 ns  (0.5%)
   gen split merge   : 561.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 157.28 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 2.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.37482895295119e-20,-2.4243131731954616e-19,5.877828901034931e-19)
    sum a = (1.759314195859469e-19,7.49587219281608e-20,1.4254314912130238e-20)
    sum e = 7.856798030084583e-10
    sum de = -4.756288522179909e-24
Info: cfl dt = 0.040113342530394384 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8648e+04 | 2592 |      1 | 4.420e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3267.451825516988 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.104207294212646, dt = 0.040113342530394384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (2.0%)
   patch tree reduce : 972.00 ns  (0.6%)
   gen split merge   : 560.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 145.25 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (56.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0668497437605546e-20,-2.377630146395077e-19,5.88095644472695e-19)
    sum a = (-2.3047382397120413e-20,7.052214433557424e-20,1.2983478941976588e-19)
    sum e = 7.856796354090549e-10
    sum de = 0
Info: cfl dt = 0.04011339585862756 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5208e+04 | 2592 |      1 | 5.733e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2518.672864212186 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.14432063674304, dt = 0.04011339585862756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (2.2%)
   patch tree reduce : 1.20 us    (0.7%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.6%)
   LB compute        : 153.13 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (57.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.605816051065238e-20,-2.35036140898739e-19,5.956219183588051e-19)
    sum a = (1.9974617169499197e-19,2.627720705897179e-20,8.78699611126165e-20)
    sum e = 7.856794719677296e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.04011345071069311 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4992e+04 | 2592 |      1 | 5.761e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2506.6345673314204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.18443403260167, dt = 0.04011345071069311 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.4%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.9%)
   LB compute        : 154.14 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3214987773172478e-20,-2.348603195728805e-19,5.983050098278224e-19)
    sum a = (-2.0371118907159625e-19,-4.2474884705971704e-20,9.667703031987516e-20)
    sum e = 7.856793127960012e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.04011350706099633 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5329e+04 | 2592 |      1 | 5.718e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2525.4302915826615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.22454748331236, dt = 0.04011350706099633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (1.9%)
   patch tree reduce : 1.10 us    (0.6%)
   gen split merge   : 701.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 160.47 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 2.75 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.93182493938612e-20,-2.3795157068756626e-19,6.023597055344956e-19)
    sum a = (-1.9360064123974953e-20,1.3843819260189039e-19,3.7308503514484113e-20)
    sum e = 7.856791579980346e-10
    sum de = 1.0339757656912846e-23
Info: cfl dt = 0.04011356488361221 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6390e+04 | 2592 |      1 | 4.597e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3141.655677212219 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.264660990373358, dt = 0.04011356488361221 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.72 us    (2.2%)
   patch tree reduce : 2.14 us    (1.3%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 150.57 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 852.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.651168093996974e-20,-2.287723007662834e-19,6.026655427013051e-19)
    sum a = (9.486299965550823e-20,1.4546029429566493e-19,5.959835540375618e-20)
    sum e = 7.856790076714958e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.04011362415233108 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8622e+04 | 2592 |      1 | 4.422e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3266.0250717905737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.30477455525697, dt = 0.0015935875874859562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.52 us    (2.3%)
   patch tree reduce : 1.76 us    (1.1%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.8%)
   LB compute        : 138.20 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.417835119493117e-20,-2.2839888584757917e-19,6.032075806107149e-19)
    sum a = (-2.471554884582686e-19,-5.573006486075853e-20,6.377231877832411e-20)
    sum e = 7.85677212205845e-10
    sum de = -3.1019272970738538e-24
Info: cfl dt = 0.040113626536095515 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0672e+04 | 2592 |      1 | 4.272e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 134.28566962675575 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 563                                                     [SPH][rank=0]
Info: time since start : 141.47170345700002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007748000000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006809 s
rho_t_ampl=0.000611911, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000267729, eps_t_phi=4.28058e-12 rad
vx_t_ampl=-1.31068e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 20.67s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 20.306368142844455, dt = 0.040113626536095515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.92 us   (5.3%)
   patch tree reduce : 1.89 us    (0.8%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 195.58 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.426096479743586e-20,-2.3079013803875335e-19,6.057690453776515e-19)
    sum a = (-3.7886045023596684e-19,-8.38495446147732e-21,1.0822696095082514e-19)
    sum e = 7.85678915094271e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.04011368727155313 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8883e+04 | 2592 |      1 | 4.402e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3280.576285913642 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.34648176938055, dt = 0.04011368727155313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.9%)
   patch tree reduce : 1.37 us    (0.9%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 133.54 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.222431745431026e-20,-2.301751741957388e-19,6.110020463005276e-19)
    sum a = (-5.674920850327609e-20,-9.249948271364166e-20,4.263209663826469e-20)
    sum e = 7.856787437569937e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.04011374940784146 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9148e+04 | 2592 |      1 | 4.382e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3295.336049808755 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.386595456652103, dt = 0.04011374940784146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (2.7%)
   patch tree reduce : 1.53 us    (1.0%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (1.0%)
   LB compute        : 138.30 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.766939488160116e-20,-2.3557264242110177e-19,6.113965536049825e-19)
    sum a = (1.1109607328313925e-20,-1.0086767792125593e-19,-1.0262372605248248e-20)
    sum e = 7.856786078053728e-10
    sum de = 4.549493369041652e-24
Info: cfl dt = 0.040113812908857606 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8667e+04 | 2592 |      1 | 4.418e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3268.5364725266168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.426709206059943, dt = 0.040113812908857606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (3.2%)
   patch tree reduce : 1.75 us    (1.1%)
   gen split merge   : 871.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 135.06 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.586188592417692e-20,-2.397866030768422e-19,6.0992399296815e-19)
    sum a = (-4.2643244280541166e-19,1.047868977963999e-19,6.886830103068905e-20)
    sum e = 7.856784763919812e-10
    sum de = -5.583469134732937e-24
Info: cfl dt = 0.04011387774744168 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8762e+04 | 2592 |      1 | 4.411e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3273.8655861254615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.4668230189688, dt = 0.04011387774744168 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.4%)
   patch tree reduce : 1.33 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 156.47 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 792.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.189001491108604e-20,-2.3145275439064547e-19,6.142736840951368e-19)
    sum a = (-1.389349976073952e-19,4.8619834267887974e-20,-9.902371413023501e-21)
    sum e = 7.856783498406698e-10
    sum de = -8.271806125530277e-24
Info: cfl dt = 0.04011394389611095 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5190e+04 | 2592 |      1 | 4.697e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3074.8285617220854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.50693689671624, dt = 0.04011394389611095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (2.2%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.8%)
   LB compute        : 174.78 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.150879484006566e-20,-2.3063157020748844e-19,6.122965623616243e-19)
    sum a = (8.230245559137103e-20,-1.321270176867411e-19,1.2564820411378954e-19)
    sum e = 7.856782282040508e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.040114011327161345 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5128e+04 | 2592 |      1 | 4.702e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3071.4140545893683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.54705084061235, dt = 0.040114011327161345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (2.9%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 144.60 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.381209306136096e-20,-2.395520377098674e-19,6.200555499355625e-19)
    sum a = (-2.478669897115092e-19,3.365957173304942e-20,8.732528743685901e-21)
    sum e = 7.856781115314247e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.04011408001267716 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7126e+04 | 2592 |      1 | 4.537e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3182.7252922342914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.587164851939512, dt = 0.04011408001267716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (2.8%)
   patch tree reduce : 1.49 us    (0.8%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.7%)
   LB compute        : 165.86 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.987591812297862e-20,-2.3488373502982896e-19,6.180608689292429e-19)
    sum a = (-1.4023311767681807e-19,-4.919851955753833e-20,3.033368095036571e-20)
    sum e = 7.856779998652928e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04011414992453991 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6727e+04 | 2592 |      1 | 4.569e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3160.5154954501413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.62727893195219, dt = 0.04011414992453991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.35 us    (2.4%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.8%)
   LB compute        : 162.54 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.372098263240837e-20,-2.3851272005934846e-19,6.197109339286371e-19)
    sum a = (6.956937658129788e-20,2.2118684808292697e-20,4.06037443419598e-20)
    sum e = 7.856778932414587e-10
    sum de = 1.1166938269465874e-23
Info: cfl dt = 0.04011422103444087 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7269e+04 | 2592 |      1 | 4.526e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3190.6795848839015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.66739308187673, dt = 0.001588777804229835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (2.6%)
   patch tree reduce : 1.61 us    (1.0%)
   gen split merge   : 991.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 150.90 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.002051883957255e-20,-2.3705233498124774e-19,6.19981431687714e-19)
    sum a = (5.490563152620143e-19,8.579450384497543e-20,-3.68552951324548e-20)
    sum e = 7.856770170863068e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.0401142238748451 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8028e+04 | 2592 |      1 | 4.467e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 128.0467025070433 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 573                                                     [SPH][rank=0]
Info: time since start : 142.318490975 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008129470000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006997170000000001 s
rho_t_ampl=0.000581391, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000269817, eps_t_phi=4.61986e-12 rad
vx_t_ampl=-1.42318e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21.03s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 20.66898185968096, dt = 0.0401142238748451 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.92 us   (5.6%)
   patch tree reduce : 1.96 us    (0.9%)
   gen split merge   : 1.02 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.7%)
   LB compute        : 184.38 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.698956834206509e-20,-2.335564483385931e-19,6.18441477526477e-19)
    sum a = (2.6950451512183874e-19,-1.1774119767372315e-19,5.635487080208905e-20)
    sum e = 7.856778286099096e-10
    sum de = 4.1359030627651384e-24
Info: cfl dt = 0.04011429619166501 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8476e+04 | 2592 |      1 | 4.433e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3257.967236945873 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.709096083555806, dt = 0.04011429619166501 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (2.7%)
   patch tree reduce : 1.67 us    (1.1%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.8%)
   LB compute        : 135.38 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.221774469446509e-20,-2.4235696297379754e-19,6.225716402375289e-19)
    sum a = (-1.4318264365734216e-19,2.4121413077442784e-19,1.6880661454538113e-19)
    sum e = 7.856777113837669e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.040114369656840794 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8180e+04 | 2592 |      1 | 4.455e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3241.4761230703784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.74921037974747, dt = 0.040114369656840794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (2.6%)
   patch tree reduce : 1.77 us    (1.1%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 148.62 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.611255900717364e-20,-2.2549085041357775e-19,6.315986724518148e-19)
    sum a = (2.3269377360891337e-19,-3.2938134315511584e-20,8.076889976260834e-20)
    sum e = 7.856776203826241e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.0401144442328656 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8621e+04 | 2592 |      1 | 4.422e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3266.0254460753986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.78932474940431, dt = 0.0401144442328656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (2.6%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 134.81 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.924028448459896e-20,-2.32310088752951e-19,6.330728832598097e-19)
    sum a = (3.3602413113497355e-20,-5.884435272845636e-20,-1.0024845157029262e-19)
    sum e = 7.856775343526614e-10
    sum de = -7.237830359838992e-24
Info: cfl dt = 0.04011451989084569 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9653e+04 | 2592 |      1 | 4.345e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3323.537902072179 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.829439193637178, dt = 0.04011451989084569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (2.2%)
   patch tree reduce : 1.17 us    (0.8%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 140.80 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.202056189910971e-20,-2.3518895756513946e-19,6.254207595326564e-19)
    sum a = (8.479106678775196e-20,2.0911883737226632e-20,-1.0573373706695403e-19)
    sum e = 7.856774534461127e-10
    sum de = 5.37667398159468e-24
Info: cfl dt = 0.040114596601667746 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9302e+04 | 2592 |      1 | 4.371e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3303.9790347637936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.869553713528024, dt = 0.040114596601667746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (2.8%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 1.01 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 137.91 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (54.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.776141351943367e-20,-2.3274265851026185e-19,6.21069273525956e-19)
    sum a = (4.808631102733008e-20,1.6095132965348943e-19,7.436148111881704e-20)
    sum e = 7.856773776571926e-10
    sum de = 5.37667398159468e-24
Info: cfl dt = 0.04011467433609096 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7696e+04 | 2592 |      1 | 4.493e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3214.4913544151786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.909668310129693, dt = 0.04011467433609096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (2.3%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 792.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 144.88 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.65585984677659e-20,-2.234808182934239e-19,6.276644836378877e-19)
    sum a = (-1.2203150247555592e-20,5.314447336310727e-20,1.5875968320865945e-20)
    sum e = 7.856773069757823e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040114753064756294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.5283e+04 | 2592 |      1 | 5.724e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2522.9532557667626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 20.949782984465784, dt = 0.040114753064756294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (2.2%)
   patch tree reduce : 982.00 ns  (0.7%)
   gen split merge   : 1.18 us    (0.8%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.9%)
   LB compute        : 128.94 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.859615401977142e-20,-2.235099849152369e-19,6.271282805371129e-19)
    sum a = (-7.362394781079272e-20,-1.9391868835921108e-20,2.0878026377377854e-19)
    sum e = 7.856772413858358e-10
    sum de = -9.926167350636332e-24
Info: cfl dt = 0.04011483275819677 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8813e+04 | 2592 |      1 | 4.407e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3276.785053978037 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 20.98989773753054, dt = 0.04011483275819677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (2.0%)
   patch tree reduce : 1.36 us    (0.9%)
   gen split merge   : 1.04 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 133.47 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.240835472997528e-20,-2.25750063629972e-19,6.393726199902029e-19)
    sum a = (-1.5297071545928478e-19,-1.1598393438433412e-19,2.563058136527416e-19)
    sum e = 7.856771808650389e-10
    sum de = 1.8611563782443123e-24
Info: cfl dt = 0.04011491338684751 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.9250e+04 | 2592 |      1 | 5.263e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2743.9443342874442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.030012570288736, dt = 0.0015830062287314206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (1.9%)
   patch tree reduce : 1.13 us    (0.7%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 143.83 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.39726715731279e-20,-2.2786320592019706e-19,6.407315934322407e-19)
    sum a = (2.593894485175985e-19,4.556963722739142e-20,1.176093438872634e-19)
    sum e = 7.856768957868014e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.04011491658712886 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1760e+04 | 2592 |      1 | 4.197e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 135.78651034981146 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 583                                                     [SPH][rank=0]
Info: time since start : 142.963237048 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000638365 s
sph::RenderFieldGetter compute custom field took :  0.000602031 s
rho_t_ampl=0.000548825, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000270683, eps_t_phi=4.90763e-12 rad
vx_t_ampl=-1.49448e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21.39s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 21.031595576517468, dt = 0.04011491658712886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.14 us   (5.3%)
   patch tree reduce : 1.97 us    (0.9%)
   gen split merge   : 991.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 184.23 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.3088181269511354e-20,-2.25903701891353e-19,6.453397037644028e-19)
    sum a = (-1.0607530635640308e-19,-2.4370676650247178e-20,-3.8725217179997143e-22)
    sum e = 7.856771454429184e-10
    sum de = -7.444625512977249e-24
Info: cfl dt = 0.04011499814865608 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8116e+04 | 2592 |      1 | 4.460e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3237.9385219469336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.071710493104597, dt = 0.04011499814865608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (2.4%)
   patch tree reduce : 1.00 us    (0.6%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 139.45 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 2.65 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 742.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.497830382944029e-20,-2.282834517527982e-19,6.429574573400125e-19)
    sum a = (1.4467055216729457e-20,8.339952880154517e-20,-3.2699531682715246e-20)
    sum e = 7.856770838612929e-10
    sum de = -3.7223127564886245e-24
Info: cfl dt = 0.04011508059284213 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0005e+04 | 2592 |      1 | 4.320e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3343.1784720900446 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.111825491253253, dt = 0.04011508059284213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (2.1%)
   patch tree reduce : 1.02 us    (0.7%)
   gen split merge   : 791.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 137.82 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.37 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.229661781260723e-20,-2.227853381423059e-19,6.409976094748195e-19)
    sum a = (-5.32467491007763e-19,2.0694295860281588e-20,1.510245091573478e-19)
    sum e = 7.856770386136491e-10
    sum de = 1.8611563782443123e-24
Info: cfl dt = 0.040115163881811286 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8877e+04 | 2592 |      1 | 4.402e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3280.3795299365925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.151940571846094, dt = 0.040115163881811286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.7%)
   patch tree reduce : 1.40 us    (0.9%)
   gen split merge   : 1.05 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 138.68 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.439140413661663e-20,-2.2321092434228125e-19,6.507410347623898e-19)
    sum a = (1.7324439320173963e-19,-5.599769300699363e-20,1.0117072766704521e-19)
    sum e = 7.856769982236341e-10
    sum de = -4.963083675318166e-24
Info: cfl dt = 0.040115247985774684 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0301e+04 | 2592 |      1 | 4.298e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3359.6916071545784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.192055735727905, dt = 0.040115247985774684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.25 us    (2.3%)
   patch tree reduce : 1.09 us    (0.8%)
   gen split merge   : 771.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.6%)
   LB compute        : 128.43 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.327312675405629e-20,-2.269939584306721e-19,6.537995772843742e-19)
    sum a = (-2.8462966791806676e-19,-1.2260713245887198e-19,1.574590731245982e-19)
    sum e = 7.856769627041439e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.04011533287482705 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0085e+04 | 2592 |      1 | 4.314e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3347.687561310408 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.23217098371368, dt = 0.04011533287482705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (1.9%)
   patch tree reduce : 1.03 us    (0.7%)
   gen split merge   : 601.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.5%)
   LB compute        : 132.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.392473818760892e-20,-2.332425990559858e-19,6.612451108853116e-19)
    sum a = (1.66639180354825e-19,-2.0861259365255021e-19,1.0528302514358178e-19)
    sum e = 7.856769319982215e-10
    sum de = 4.1359030627651384e-25
Info: cfl dt = 0.040115418519026835 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0797e+04 | 2592 |      1 | 4.263e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3387.360067363311 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.272286316588506, dt = 0.040115418519026835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (1.7%)
   patch tree reduce : 531.00 ns  (0.4%)
   gen split merge   : 430.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 621.00 ns  (0.5%)
   LB compute        : 128.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 1.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.793321348428825e-20,-2.4334123376061314e-19,6.644220537354722e-19)
    sum a = (2.772505125993823e-19,-1.2247266046789885e-19,2.311892331018104e-19)
    sum e = 7.85676906044685e-10
    sum de = 1.6543612251060553e-24
Info: cfl dt = 0.04011550488840501 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9210e+04 | 2592 |      1 | 4.378e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3298.9174857431735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.31240173510753, dt = 0.04011550488840501 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.6%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (1.0%)
   LB compute        : 141.74 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.434731888430311e-20,-2.46527789893054e-19,6.762217166592942e-19)
    sum a = (2.7949243990282382e-19,-1.80951557479026e-19,1.8584401813316514e-19)
    sum e = 7.856768847772554e-10
    sum de = -1.4475660719677984e-23
Info: cfl dt = 0.0401155919529749 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9138e+04 | 2592 |      1 | 4.383e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3294.9294991579923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.352517239995937, dt = 0.0401155919529749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (2.5%)
   patch tree reduce : 1.90 us    (1.2%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 140.83 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.30421719505951e-20,-2.549511924321413e-19,6.827674363612596e-19)
    sum a = (-1.2509831113956745e-19,2.3662962436370463e-21,1.6760277536496292e-19)
    sum e = 7.856768681251912e-10
    sum de = 9.719372197498075e-24
Info: cfl dt = 0.04011567968274192 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0052e+04 | 2592 |      1 | 4.316e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3345.838150293405 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.392632831948912, dt = 0.001576461405065288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (1.9%)
   patch tree reduce : 1.11 us    (0.7%)
   gen split merge   : 701.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.6%)
   LB compute        : 146.22 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.166563286747004e-20,-2.512753764887249e-19,6.826657765421826e-19)
    sum a = (2.661950278404185e-19,-3.481638388451172e-20,6.72281523416336e-20)
    sum e = 7.856768472504735e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.04011568314329998 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5210e+04 | 2592 |      1 | 4.695e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 120.88317333649533 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 593                                                     [SPH][rank=0]
Info: time since start : 143.58026375600002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000672437 s
sph::RenderFieldGetter compute custom field took :  0.000560288 s
rho_t_ampl=0.000515123, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000270355, eps_t_phi=5.05107e-12 rad
vx_t_ampl=-1.52537e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 21.76s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 21.394209293353978, dt = 0.04011568314329998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.31 us   (5.2%)
   patch tree reduce : 2.11 us    (1.0%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 189.19 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.076799704416314e-20,-2.5270864893246425e-19,6.852835614402201e-19)
    sum a = (-1.427965967158105e-19,1.7786619874084205e-19,3.2602320812267174e-19)
    sum e = 7.856768602640918e-10
    sum de = 1.2407709188295415e-24
Info: cfl dt = 0.04011577152553547 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3697e+04 | 2592 |      1 | 5.932e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2434.6172713926912 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.434324976497276, dt = 0.04011577152553547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.2%)
   patch tree reduce : 1.15 us    (0.6%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.8%)
   LB compute        : 172.16 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.476797551439456e-20,-2.4129176508138824e-19,7.035531041976731e-19)
    sum a = (3.168655888548455e-19,3.7628256760996993e-19,-3.5960680038533305e-20)
    sum e = 7.856768504383401e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.04011586051906013 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4031e+04 | 2592 |      1 | 5.887e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2453.264080931045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.47444074802281, dt = 0.04011586051906013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (2.7%)
   patch tree reduce : 1.88 us    (1.1%)
   gen split merge   : 1.10 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 155.10 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.274923003304468e-20,-2.222336371128012e-19,6.948498790963971e-19)
    sum a = (5.6723430960758285e-21,1.195329037651915e-19,-7.112384587607687e-20)
    sum e = 7.85676847337409e-10
    sum de = 4.756288522179909e-24
Info: cfl dt = 0.04011595008661281 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4250e+04 | 2592 |      1 | 5.858e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2465.442150539325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.51455660854187, dt = 0.04011595008661281 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.19 us    (2.4%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.6%)
   LB compute        : 159.29 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (58.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.871729597246727e-20,-2.225840473720473e-19,6.912913781171682e-19)
    sum a = (-2.1412387845757603e-19,2.6331804612920125e-19,2.0820119636594115e-19)
    sum e = 7.856768485126048e-10
    sum de = 9.512577044359818e-24
Info: cfl dt = 0.040116040198319734 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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 | 2592 |      1 | 5.893e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2450.826638639982 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.554672558628482, dt = 0.040116040198319734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.2%)
   patch tree reduce : 1.22 us    (0.7%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 162.63 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.204028017864525e-20,-2.0913166195641736e-19,7.052462804061781e-19)
    sum a = (-3.399061674185324e-20,1.6888513860864034e-20,1.453169538813569e-19)
    sum e = 7.856768538777415e-10
    sum de = -1.8611563782443123e-24
Info: cfl dt = 0.04011613082429086 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.0393e+04 | 2592 |      1 | 6.417e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2250.5732991621358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.594788598826803, dt = 0.04011613082429086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.2%)
   patch tree reduce : 2.04 us    (1.1%)
   gen split merge   : 801.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 169.40 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.97003776737615e-20,-2.134047774507644e-19,7.098145009393931e-19)
    sum a = (-1.1960081372531063e-19,-1.0954402901501005e-20,9.232454772675687e-20)
    sum e = 7.856768633362866e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.04011622193468618 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9731e+04 | 2592 |      1 | 6.524e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2213.69378683863 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 21.634904729651094, dt = 0.04011622193468618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (2.7%)
   patch tree reduce : 1.17 us    (0.6%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 165.48 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.594449952668161e-20,-2.1439890737734774e-19,7.124552878370332e-19)
    sum a = (-1.1976184634151753e-20,1.2286637135010938e-19,7.827490343653139e-20)
    sum e = 7.856768767881011e-10
    sum de = 1.0132962503774589e-23
Info: cfl dt = 0.040116313499724186 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.8712e+04 | 2592 |      1 | 6.696e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2156.9273759171692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.67502095158578, dt = 0.040116313499724186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.9%)
   patch tree reduce : 2.23 us    (1.4%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 141.48 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.467595687656205e-20,-2.067864190841594e-19,7.153135790782145e-19)
    sum a = (-1.291495959891397e-19,-5.526440664934426e-20,4.6999722381523693e-20)
    sum e = 7.856768941293724e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.040116405489690796 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.1305e+04 | 2592 |      1 | 6.275e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2301.4002331667402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.715137265085502, dt = 0.040116405489690796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.4%)
   patch tree reduce : 1.56 us    (0.8%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 168.85 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (57.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.214261206068548e-20,-2.125794852927041e-19,7.165717165152002e-19)
    sum a = (-1.7021250232440563e-19,-2.018010577661205e-20,1.2128324231222199e-19)
    sum e = 7.856769152531528e-10
    sum de = 1.0960143116327617e-23
Info: cfl dt = 0.040116497874948545 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.1110e+04 | 2592 |      1 | 6.305e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2290.5576508959775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.755253670575193, dt = 0.0015693396152904882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.44 us    (2.8%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 143.66 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.308908947839126e-20,-2.119000262437087e-19,7.182520450153874e-19)
    sum a = (-3.1391911818065564e-20,-8.436779132365968e-20,-7.051642362985134e-21)
    sum e = 7.856768636742231e-10
    sum de = -3.9291079096268815e-24
Info: cfl dt = 0.04011650149647647 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.1773e+04 | 2592 |      1 | 6.205e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.04910604749327 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 603                                                     [SPH][rank=0]
Info: time since start : 144.380191109 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007795170000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007126760000000001 s
rho_t_ampl=0.000481168, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000268893, eps_t_phi=5.35083e-12 rad
vx_t_ampl=-1.51762e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.12s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 21.756823010190484, dt = 0.04011650149647647 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.47 us   (4.7%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 217.82 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.372664718337364e-20,-2.1533881203520834e-19,7.178684572847182e-19)
    sum a = (-4.880726062284816e-20,1.1587364809560378e-20,-8.429274885960706e-20)
    sum e = 7.856769309064007e-10
    sum de = -4.1359030627651384e-24
Info: cfl dt = 0.040116594254951655 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.6003e+04 | 2592 |      1 | 5.634e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2563.1882620068263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.79693951168696, dt = 0.040116594254951655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (2.7%)
   patch tree reduce : 1.37 us    (0.8%)
   gen split merge   : 892.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.6%)
   LB compute        : 155.13 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.627030524345794e-20,-2.1295495419885995e-19,7.129375977979277e-19)
    sum a = (2.0475173911458615e-19,5.9195148110349646e-21,1.0547004230514494e-19)
    sum e = 7.856769645584621e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.04011668735490503 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2884e+04 | 2592 |      1 | 6.044e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2389.3702664127172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.83705610594191, dt = 0.04011668735490503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (2.4%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 161.15 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.345342354535875e-20,-2.1282637458438864e-19,7.209750249593001e-19)
    sum a = (-2.2987241644537023e-19,4.2091081103859834e-20,6.04262817711251e-20)
    sum e = 7.85676996470789e-10
    sum de = -1.1166938269465874e-23
Info: cfl dt = 0.040116780760595945 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3877e+04 | 2592 |      1 | 5.907e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2444.7077618916483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.87717279329682, dt = 0.040116780760595945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.1%)
   patch tree reduce : 1.63 us    (0.9%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.7%)
   LB compute        : 165.06 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.128532100532957e-20,-2.1041335012622727e-19,7.224956296279819e-19)
    sum a = (-2.0595989453362813e-19,7.053535404237246e-20,3.92014514876266e-21)
    sum e = 7.856770317246874e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.040116874442827806 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.5673e+04 | 2592 |      1 | 5.675e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2544.77955673043 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 21.917289574057413, dt = 0.040116874442827806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (1.8%)
   patch tree reduce : 1.20 us    (0.7%)
   gen split merge   : 591.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 152.27 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.879798550836925e-20,-2.0701646567874067e-19,7.215194714514737e-19)
    sum a = (1.2390514982892227e-19,-6.317152660504569e-20,8.481718523165365e-20)
    sum e = 7.856770701783274e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.04011696837248224 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.6828e+04 | 2592 |      1 | 5.535e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2609.1737726780793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 21.95740644850024, dt = 0.04011696837248224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.93 us    (2.3%)
   patch tree reduce : 1.57 us    (0.9%)
   gen split merge   : 1.03 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.9%)
   LB compute        : 154.72 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 832.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.729565577930587e-20,-2.122241454635741e-19,7.265447479887422e-19)
    sum a = (1.7358781990365023e-19,3.115009459164437e-19,1.4698298339159007e-20)
    sum e = 7.85677111709427e-10
    sum de = -1.34416849539867e-23
Info: cfl dt = 0.04011706252057054 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5220e+04 | 2592 |      1 | 5.732e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2519.557497379381 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 21.997523416872724, dt = 0.04011706252057054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (2.3%)
   patch tree reduce : 1.47 us    (0.8%)
   gen split merge   : 791.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 12.02 us   (6.5%)
   LB compute        : 158.12 us  (85.3%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.94346350044717e-20,-1.922129673174361e-19,7.25727921958257e-19)
    sum a = (1.777155130864227e-19,1.3423719453258289e-20,5.318388283088879e-20)
    sum e = 7.856771561932544e-10
    sum de = -5.37667398159468e-24
Info: cfl dt = 0.040117156858241354 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.6597e+04 | 2592 |      1 | 5.563e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2596.320902421579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.037640479393296, dt = 0.040117156858241354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.4%)
   patch tree reduce : 1.35 us    (0.8%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 162.85 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.234919989136867e-20,-1.976609636341089e-19,7.286334724277021e-19)
    sum a = (-7.191667344100745e-20,-4.8130933904716494e-20,8.200595286186778e-21)
    sum e = 7.85677203503171e-10
    sum de = 9.305781891221561e-24
Info: cfl dt = 0.04011725135678904 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.7424e+04 | 2592 |      1 | 5.466e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2642.3959415560985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.077757636251537, dt = 0.04011725135678904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (2.7%)
   patch tree reduce : 1.62 us    (1.0%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 151.63 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.011820202837033e-20,-2.0081958553720777e-19,7.280601569688581e-19)
    sum a = (1.4560306247032936e-20,9.203951147998406e-20,-2.321964200343179e-20)
    sum e = 7.856772535110345e-10
    sum de = -5.583469134732937e-24
Info: cfl dt = 0.04011734598766163 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3178e+04 | 2592 |      1 | 6.003e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2405.7900048868137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.117874887608327, dt = 0.0015618394186667217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (2.1%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 1.12 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 150.04 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (56.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.843557550800449e-20,-1.9787293513911594e-19,7.273936448381814e-19)
    sum a = (-1.3653758345386614e-19,-2.732047221662431e-21,3.566599311394822e-20)
    sum e = 7.856769320872685e-10
    sum de = -2.895132143935597e-24
Info: cfl dt = 0.040117349673964076 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0859e+04 | 2592 |      1 | 6.344e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.63294279092926 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 613                                                     [SPH][rank=0]
Info: time since start : 145.136913131 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000978675 s
sph::RenderFieldGetter compute custom field took :  0.0007721760000000001 s
rho_t_ampl=0.000447792, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00026638, eps_t_phi=5.50537e-12 rad
vx_t_ampl=-1.47387e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.48s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 22.119436727026994, dt = 0.040117349673964076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.82 us   (4.7%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 223.37 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (73.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.373979270306399e-20,-1.9805039965493575e-19,7.288704549084267e-19)
    sum a = (2.115598859217207e-19,3.589343071703258e-21,-1.5401474142211733e-19)
    sum e = 7.856772869197922e-10
    sum de = -6.203854594147708e-25
Info: cfl dt = 0.04011744440697534 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5086e+04 | 2592 |      1 | 4.705e-02 | 0.1% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3069.3355566177925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.159554076700957, dt = 0.04011744440697534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (2.7%)
   patch tree reduce : 1.97 us    (1.1%)
   gen split merge   : 971.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.8%)
   LB compute        : 160.93 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.824779774797693e-20,-1.977772193238705e-19,7.188870329047102e-19)
    sum a = (8.513120710973997e-20,1.7584795067088175e-19,3.548147401845454e-20)
    sum e = 7.856773527174613e-10
    sum de = 2.481541837659083e-24
Info: cfl dt = 0.04011753921995149 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5611e+04 | 2592 |      1 | 4.661e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3098.553610795425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.19967152110793, dt = 0.04011753921995149 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (2.7%)
   patch tree reduce : 1.46 us    (0.8%)
   gen split merge   : 912.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 154.52 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 611.00 ns  (46.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.723559273181935e-20,-1.8726696553393884e-19,7.2411151427435915e-19)
    sum a = (8.259001383459761e-20,-6.424768765547804e-20,2.2706940959791797e-20)
    sum e = 7.856774101040721e-10
    sum de = 1.5923226791645783e-23
Info: cfl dt = 0.04011763407948157 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4834e+04 | 2592 |      1 | 4.727e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3055.305478880588 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.239789060327883, dt = 0.04011763407948157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (3.1%)
   patch tree reduce : 1.58 us    (0.9%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 154.33 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.431728736055984e-20,-1.94659677169804e-19,7.247662216073355e-19)
    sum a = (-1.1839430149622995e-19,-4.8130125147157417e-20,-5.792484717554976e-20)
    sum e = 7.856774696795829e-10
    sum de = -5.790264287871194e-24
Info: cfl dt = 0.040117728957742904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0959e+04 | 2592 |      1 | 6.328e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2282.1748865483455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.279906694407366, dt = 0.040117728957742904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.5%)
   patch tree reduce : 1.56 us    (0.9%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.8%)
   LB compute        : 160.83 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.309849451371908e-20,-1.9626877093940192e-19,7.208250300026478e-19)
    sum a = (-4.944752959126667e-19,-2.0716839656305257e-19,7.238905506744734e-21)
    sum e = 7.856775312884207e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.040117823827077556 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.1517e+04 | 2592 |      1 | 6.243e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2313.3139150792877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.32002442336511, dt = 0.040117823827077556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (2.7%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 163.55 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (56.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.002709159941773e-20,-2.0776206312367815e-19,7.224225500224577e-19)
    sum a = (-2.771502780117433e-19,-1.20394294752714e-19,-7.623622826952769e-20)
    sum e = 7.856775947977369e-10
    sum de = -7.031035206700735e-24
Info: cfl dt = 0.04011791866002845 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.0628e+04 | 2592 |      1 | 6.380e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2263.77876126532 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 22.360142247192186, dt = 0.04011791866002845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (2.8%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.0%)
   LB compute        : 146.58 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (56.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.70402263542238e-20,-2.1086194098566074e-19,7.17689690862422e-19)
    sum a = (-2.290656101743745e-19,-9.342637664473842e-20,5.153981373153843e-20)
    sum e = 7.85677660073118e-10
    sum de = 1.2200914035157158e-23
Info: cfl dt = 0.040118013429346316 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.1954e+04 | 2592 |      1 | 6.178e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2337.649652189603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.400260165852217, dt = 0.040118013429346316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (2.6%)
   patch tree reduce : 1.54 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 148.42 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0507213888503262e-19,-2.1406821539763716e-19,7.223204202316549e-19)
    sum a = (1.5918813547533385e-19,1.4938272031684665e-19,-6.60332436720462e-20)
    sum e = 7.856777269802906e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.04011810810799686 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.1326e+04 | 2592 |      1 | 6.272e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2302.6775954718837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.440378179281563, dt = 0.04011810810799686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.7%)
   patch tree reduce : 1.74 us    (1.0%)
   gen split merge   : 821.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 161.58 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.134821632829872e-20,-2.032005677911239e-19,7.173128926754186e-19)
    sum a = (1.395002549540806e-19,1.1726745830542893e-19,-2.819177214815078e-19)
    sum e = 7.856777953848772e-10
    sum de = 1.6336817097922297e-23
Info: cfl dt = 0.04011820266916922 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2742e+04 | 2592 |      1 | 6.064e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2381.5772537431517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.48049628738956, dt = 0.0015541564739436353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (1.7%)
   patch tree reduce : 851.00 ns  (0.6%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.5%)
   LB compute        : 138.23 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 2.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.157169016303482e-20,-2.036688769300929e-19,7.125443100136413e-19)
    sum a = (2.2952406017357573e-19,-5.969005638681712e-20,-2.7415373273493614e-21)
    sum e = 7.856770362410841e-10
    sum de = -8.478601278668534e-24
Info: cfl dt = 0.0401182063295951 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3074e+04 | 2592 |      1 | 6.018e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97706635734632 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 623                                                     [SPH][rank=0]
Info: time since start : 145.908169396 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000806988 s
sph::RenderFieldGetter compute custom field took :  0.000695531 s
rho_t_ampl=0.000415761, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00026292, eps_t_phi=5.66613e-12 rad
vx_t_ampl=-1.3975e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 22.84s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 22.482050443863503, dt = 0.0401182063295951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.24 us   (5.1%)
   patch tree reduce : 2.09 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 212.07 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.238954465931965e-20,-2.0619815707801587e-19,7.126512661904726e-19)
    sum a = (2.8768969842348795e-20,-1.3586418366785303e-19,-8.133174874612962e-20)
    sum e = 7.856778398474337e-10
    sum de = 6.617444900424222e-24
Info: cfl dt = 0.04011830073635335 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7107e+04 | 2592 |      1 | 4.539e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3182.011515622629 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.522168650193098, dt = 0.04011830073635335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (2.5%)
   patch tree reduce : 2.04 us    (1.2%)
   gen split merge   : 912.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 149.12 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 782.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.497263927847503e-20,-2.1318500079344123e-19,7.078119254762807e-19)
    sum a = (3.914103135653556e-19,-1.5334762215665677e-20,7.497530842459577e-21)
    sum e = 7.856779248759952e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.04011839497596071 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4120e+04 | 2592 |      1 | 4.789e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3015.5312880755514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.56228695092945, dt = 0.04011839497596071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.4%)
   patch tree reduce : 1.84 us    (1.1%)
   gen split merge   : 872.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.6%)
   LB compute        : 158.18 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 621.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.195483430065793e-20,-2.1136516791130725e-19,7.098945542563167e-19)
    sum a = (1.5484600600261242e-20,-8.737693428996702e-20,1.4600794566268936e-20)
    sum e = 7.856779970108064e-10
    sum de = -1.6543612251060553e-24
Info: cfl dt = 0.040118489018031486 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6914e+04 | 2592 |      1 | 4.554e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3171.228137121373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.60240534590541, dt = 0.040118489018031486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (2.2%)
   patch tree reduce : 1.51 us    (0.8%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.8%)
   LB compute        : 166.09 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.910599701221275e-20,-2.163230828220239e-19,7.106228018426198e-19)
    sum a = (-5.852631844641639e-20,9.484330705081585e-20,-8.0746383238559e-20)
    sum e = 7.856780701037107e-10
    sum de = 5.790264287871194e-24
Info: cfl dt = 0.04011858283673339 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4871e+04 | 2592 |      1 | 4.724e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3057.4364744899053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.64252383492344, dt = 0.04011858283673339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.5%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 741.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.6%)
   LB compute        : 168.95 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.316796259653342e-20,-2.0886135720778437e-19,7.054707790250587e-19)
    sum a = (-5.58684586840221e-22,2.274859141001779e-19,5.470991084281725e-20)
    sum e = 7.856781440220682e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.0401186764064762 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5624e+04 | 2592 |      1 | 4.660e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3099.379849169864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.682642417760174, dt = 0.0401186764064762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (2.8%)
   patch tree reduce : 1.78 us    (1.0%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 152.73 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.172195543059402e-20,-1.9707598800788796e-19,7.103828255118499e-19)
    sum a = (1.6942849531412286e-19,6.321888385322707e-20,1.2583911484436242e-20)
    sum e = 7.856782186365195e-10
    sum de = 5.997059441009451e-24
Info: cfl dt = 0.04011876970193193 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5762e+04 | 2592 |      1 | 4.648e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3107.0714359218264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.72276109416665, dt = 0.04011876970193193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (2.8%)
   patch tree reduce : 1.94 us    (1.1%)
   gen split merge   : 962.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 157.82 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.133699487521109e-20,-1.978392497449094e-19,7.10042656890371e-19)
    sum a = (-9.350243836755616e-20,1.1247432453801838e-19,-1.320482134426949e-19)
    sum e = 7.85678293817569e-10
    sum de = -8.68539643180679e-24
Info: cfl dt = 0.04011886269804096 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6335e+04 | 2592 |      1 | 4.601e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3139.021543964133 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.76287986386858, dt = 0.04011886269804096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (3.1%)
   patch tree reduce : 1.90 us    (1.1%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 148.08 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.024308446542873e-20,-1.923275798172364e-19,7.018438012899812e-19)
    sum a = (5.687902051021838e-20,-1.1717893144626417e-19,-1.0283204971115291e-19)
    sum e = 7.856783694369118e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.040118955370018125 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6849e+04 | 2592 |      1 | 4.559e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3167.6776502932175 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.80299872656662, dt = 0.040118955370018125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (2.8%)
   patch tree reduce : 1.62 us    (0.9%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (1.0%)
   LB compute        : 157.39 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 861.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.511633178618905e-20,-2.0164734248021e-19,6.983043465076809e-19)
    sum a = (2.5302331981005224e-19,-2.916749475764906e-20,-5.84790586822618e-20)
    sum e = 7.856784453677809e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.04011904769335858 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2604e+04 | 2592 |      1 | 6.084e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2373.9484155096684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.84311768193664, dt = 0.001546478763369663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (3.3%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.8%)
   LB compute        : 153.90 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.05811274930155e-20,-1.9992815498320537e-19,6.991036077191272e-19)
    sum a = (4.957339794230185e-20,7.944386990526732e-20,2.3517572380881087e-20)
    sum e = 7.856771585890211e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.04011905124480514 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3185e+04 | 2592 |      1 | 6.002e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.75661191719051 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 633                                                     [SPH][rank=0]
Info: time since start : 146.58019264700002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000874409 s
sph::RenderFieldGetter compute custom field took :  0.0007363220000000001 s
rho_t_ampl=0.000385757, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000258637, eps_t_phi=6.01474e-12 rad
vx_t_ampl=-1.29253e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.21s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 22.84466416070001, dt = 0.04011905124480514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.01 us   (4.4%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 243.14 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (75.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.933230312243147e-20,-1.9666108254266104e-19,7.001105134349147e-19)
    sum a = (2.278118562339066e-19,-1.142466332854905e-20,-6.83171329238392e-20)
    sum e = 7.856784940063453e-10
    sum de = 0
Info: cfl dt = 0.040119143177277 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4859e+04 | 2592 |      1 | 4.725e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3056.776761049643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 22.884783211944814, dt = 0.040119143177277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (2.8%)
   patch tree reduce : 1.46 us    (0.8%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 160.89 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6245938270679944e-20,-1.9893320346164138e-19,6.955275279736175e-19)
    sum a = (-1.2707609565673086e-19,-7.34512074661116e-20,-9.827378790731344e-20)
    sum e = 7.856785852146348e-10
    sum de = -8.68539643180679e-24
Info: cfl dt = 0.04011923471521753 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6734e+04 | 2592 |      1 | 4.569e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3161.2780571706253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.924902355122093, dt = 0.04011923471521753 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (2.8%)
   patch tree reduce : 1.45 us    (0.8%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 153.48 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.845812606302265e-20,-2.0312867823031723e-19,6.9098394114497675e-19)
    sum a = (1.7169691905569028e-20,-1.5819932024128158e-19,1.5450380266072142e-19)
    sum e = 7.856786613707592e-10
    sum de = 3.308722450212111e-24
Info: cfl dt = 0.040119325831834904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6387e+04 | 2592 |      1 | 4.597e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3141.9426050859033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 22.96502158983731, dt = 0.040119325831834904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (3.0%)
   patch tree reduce : 2.00 us    (1.1%)
   gen split merge   : 1.05 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 157.52 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 660.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.468536191188987e-20,-2.1117209309085513e-19,7.022531512895878e-19)
    sum a = (-1.3323312844170236e-19,-4.2256273044656244e-20,-7.027949896778662e-20)
    sum e = 7.856787373059286e-10
    sum de = -1.4475660719677984e-24
Info: cfl dt = 0.04011941650381718 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5880e+04 | 2592 |      1 | 4.639e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3113.712231486112 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.005140915669145, dt = 0.04011941650381718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (3.4%)
   patch tree reduce : 1.96 us    (1.1%)
   gen split merge   : 1.10 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.6%)
   LB compute        : 157.91 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.330225006891964e-20,-2.1053289219591146e-19,6.949245015390239e-19)
    sum a = (-3.0804224928408494e-19,-1.8352018432406902e-20,5.613579128868129e-20)
    sum e = 7.856788129399012e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.04011950670817562 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.9502e+04 | 2592 |      1 | 5.236e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2758.3236319659554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.045260332172962, dt = 0.04011950670817562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (2.9%)
   patch tree reduce : 1.62 us    (0.9%)
   gen split merge   : 911.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.6%)
   LB compute        : 153.67 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.920832889425298e-20,-2.107986781721509e-19,6.997124956353249e-19)
    sum a = (-2.4688929168453886e-20,7.642373810609384e-22,-5.999461887863927e-20)
    sum e = 7.856788881585154e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.040119596422167 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.9914e+04 | 2592 |      1 | 6.494e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2224.050669986444 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.08537983888114, dt = 0.040119596422167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (2.8%)
   patch tree reduce : 1.81 us    (1.1%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.9%)
   LB compute        : 149.33 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.420645865207171e-20,-2.1038582669437558e-19,6.949759883535213e-19)
    sum a = (1.722243830332659e-19,3.4609688559771047e-22,-1.6130204047517285e-19)
    sum e = 7.856789628489795e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.040119685623433245 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0070e+04 | 2592 |      1 | 6.469e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2232.7911841674604 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.125499435303304, dt = 0.040119685623433245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (2.8%)
   patch tree reduce : 1.62 us    (0.9%)
   gen split merge   : 922.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 160.20 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 772.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.353886942334607e-20,-2.1037761074456911e-19,6.864723947647518e-19)
    sum a = (-1.0393176505189406e-19,-3.1714644596401116e-20,-6.958772097195433e-20)
    sum e = 7.856790369009003e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.040119774289948285 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.2602e+04 | 2592 |      1 | 6.084e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2373.8709017831434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.16561912092674, dt = 0.040119774289948285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (2.8%)
   patch tree reduce : 1.33 us    (0.7%)
   gen split merge   : 961.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 161.62 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.291819772241661e-20,-2.122882298720646e-19,6.855203259388328e-19)
    sum a = (1.558565678288087e-19,-8.96350624194332e-20,1.0165070949802325e-19)
    sum e = 7.856791102065554e-10
    sum de = 9.615974620928947e-24
Info: cfl dt = 0.04011986239997942 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2265e+04 | 2592 |      1 | 6.133e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2355.0672491288433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.205738895216687, dt = 0.001538982319832627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (3.0%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 159.48 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.7646844326583e-20,-2.1360072785364879e-19,6.891117881736316e-19)
    sum a = (8.373038766773619e-20,5.615154950454142e-20,2.8107651935295276e-20)
    sum e = 7.856772821490131e-10
    sum de = -1.9645539548134407e-24
Info: cfl dt = 0.04011986576846522 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0497e+04 | 2592 |      1 | 5.133e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.93624463346798 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 643                                                     [SPH][rank=0]
Info: time since start : 147.317808793 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000845005 s
sph::RenderFieldGetter compute custom field took :  0.0007710740000000001 s
rho_t_ampl=0.000358368, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000253665, eps_t_phi=6.11244e-12 rad
vx_t_ampl=-1.16343e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.57s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 23.20727787753652, dt = 0.04011986576846522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.47 us   (4.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.6%)
   LB compute        : 259.83 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (76.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.446891494143892e-20,-2.112287831445198e-19,6.901828726637046e-19)
    sum a = (-7.565082262804981e-20,-5.766228295004993e-20,-5.998743200465108e-20)
    sum e = 7.856791566565809e-10
    sum de = -3.1019272970738538e-24
Info: cfl dt = 0.040119953275943525 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.2995e+04 | 2592 |      1 | 6.029e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2395.766535500113 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.247397743304983, dt = 0.040119953275943525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (2.7%)
   patch tree reduce : 1.99 us    (1.0%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.7%)
   LB compute        : 180.78 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.099566546770173e-20,-2.1583526080226451e-19,6.860089982232575e-19)
    sum a = (4.3465660856169194e-20,-2.616857037891353e-21,-2.1433012762419338e-20)
    sum e = 7.856792421400691e-10
    sum de = -2.0679515313825692e-24
Info: cfl dt = 0.04012004018573947 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3525e+04 | 2592 |      1 | 5.955e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2425.2820396700226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.287517696580927, dt = 0.04012004018573947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.6%)
   patch tree reduce : 1.81 us    (0.9%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.7%)
   LB compute        : 178.62 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.691069522392294e-20,-2.1482428817857792e-19,6.859225056391963e-19)
    sum a = (-8.777427816248261e-20,4.231886831224432e-20,-6.671184797652771e-20)
    sum e = 7.856793126306584e-10
    sum de = 0
Info: cfl dt = 0.04012012647511182 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3847e+04 | 2592 |      1 | 5.911e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2443.2444611831443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.32763773676667, dt = 0.04012012647511182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (2.6%)
   patch tree reduce : 2.10 us    (1.0%)
   gen split merge   : 1.12 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 183.01 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.27012966475257e-20,-2.1222619945102572e-19,6.823377235168409e-19)
    sum a = (-2.928493149019535e-20,6.475598536264574e-20,2.5055606462145616e-20)
    sum e = 7.856793818826108e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.0401202121236952 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3397e+04 | 2592 |      1 | 5.973e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2418.2087050651835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.36775786324178, dt = 0.0401202121236952 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.3%)
   patch tree reduce : 2.13 us    (0.9%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 227.10 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.313509879730752e-20,-2.0917746587658844e-19,6.851838207021638e-19)
    sum a = (2.1294263027415025e-19,-1.3578472002831853e-19,-1.3758913768212177e-19)
    sum e = 7.856794498868604e-10
    sum de = -5.0664812518872945e-24
Info: cfl dt = 0.040120297111483516 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3521e+04 | 2592 |      1 | 5.956e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2425.105560430831 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.407878075365478, dt = 0.040120297111483516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (2.4%)
   patch tree reduce : 1.88 us    (0.9%)
   gen split merge   : 1.01 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.7%)
   LB compute        : 184.11 us  (85.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.934544864212183e-20,-2.1865702876329797e-19,6.764010328011405e-19)
    sum a = (1.1186837256494779e-20,-4.468164710237047e-20,-4.5897825675407274e-20)
    sum e = 7.856795165536833e-10
    sum de = -1.002956492720546e-23
Info: cfl dt = 0.040120381418824264 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.5344e+04 | 2592 |      1 | 5.716e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2526.6652969353026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.44799837247696, dt = 0.040120381418824264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (3.2%)
   patch tree reduce : 2.25 us    (1.2%)
   gen split merge   : 972.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.7%)
   LB compute        : 162.58 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 972.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.253323716703368e-20,-2.1861225183685268e-19,6.763989358688619e-19)
    sum a = (3.6978346888977454e-20,1.1522125033128347e-20,-6.145896537064942e-20)
    sum e = 7.856795817960061e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.040120465026422136 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6507e+04 | 2592 |      1 | 4.587e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3148.7457362015994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.488118753895783, dt = 0.040120465026422136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.33 us    (2.5%)
   patch tree reduce : 1.63 us    (0.9%)
   gen split merge   : 1.05 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.7%)
   LB compute        : 157.30 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.117924863892679e-20,-2.1702369794177097e-19,6.736210141682003e-19)
    sum a = (2.6781038627174384e-19,5.1279029122125816e-20,-6.446538224762698e-20)
    sum e = 7.856796455297747e-10
    sum de = 2.274746684520826e-24
Info: cfl dt = 0.04012054791534258 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4077e+04 | 2592 |      1 | 4.793e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3013.3002034196006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.528239218922206, dt = 0.04012054791534258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (2.7%)
   patch tree reduce : 1.62 us    (0.8%)
   gen split merge   : 972.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.7%)
   LB compute        : 176.08 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5864718199659554e-20,-2.141643420103729e-19,6.709743182892666e-19)
    sum a = (-3.7055248179166046e-19,-5.248528460277505e-21,-3.774394410713924e-21)
    sum e = 7.856797076742837e-10
    sum de = 6.824240053562478e-24
Info: cfl dt = 0.040120630067015314 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5217e+04 | 2592 |      1 | 4.694e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3076.858647919256 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.56835976683755, dt = 0.0015318275354765376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (2.4%)
   patch tree reduce : 1.93 us    (1.0%)
   gen split merge   : 982.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.6%)
   LB compute        : 183.20 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.911868842746315e-20,-2.1531272639457278e-19,6.7218601441070655e-19)
    sum a = (-1.0832401181843497e-19,-1.6992766561455243e-19,-1.4954940867692692e-19)
    sum e = 7.85677392083365e-10
    sum de = 7.858215819253763e-24
Info: cfl dt = 0.04012063318877694 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4809e+04 | 2592 |      1 | 4.729e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 116.60781510699091 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 653                                                     [SPH][rank=0]
Info: time since start : 148.06075421600002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000838526 s
sph::RenderFieldGetter compute custom field took :  0.000700078 s
rho_t_ampl=0.000334079, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00024815, eps_t_phi=7.03526e-12 rad
vx_t_ampl=-1.015e-05, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 23.93s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 23.569891594373026, dt = 0.04012063318877694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.67 us   (3.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 278.92 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (79.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.311164003340944e-20,-2.2225089060739477e-19,6.660743463511975e-19)
    sum a = (1.7943634377338864e-21,3.2479852486532946e-19,5.099275685613074e-20)
    sum e = 7.856797466388585e-10
    sum de = -4.756288522179909e-24
Info: cfl dt = 0.040120714554783714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.3764e+04 | 2592 |      1 | 4.821e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2995.9034620358316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.610012227561803, dt = 0.040120714554783714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (2.9%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 1.22 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.6%)
   LB compute        : 157.46 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.085389702659043e-20,-1.9930004562050044e-19,6.72143151524499e-19)
    sum a = (3.58230200271911e-19,-9.819885500083862e-20,7.436786293431414e-20)
    sum e = 7.856798166533021e-10
    sum de = 3.101927297073854e-25
Info: cfl dt = 0.04012079514777769 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5583e+04 | 2592 |      1 | 4.663e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3097.279534625942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 23.65013294211659, dt = 0.04012079514777769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (2.9%)
   patch tree reduce : 1.63 us    (0.9%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (1.0%)
   LB compute        : 155.94 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.925909455525459e-20,-2.1171886455047596e-19,6.755957622981886e-19)
    sum a = (2.8762890039492e-19,-9.060100136824307e-20,1.380913123521937e-19)
    sum e = 7.856798736438115e-10
    sum de = -2.274746684520826e-24
Info: cfl dt = 0.04012087494939212 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4876e+04 | 2592 |      1 | 4.723e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3057.8780216409023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.690253737264367, dt = 0.04012087494939212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (2.9%)
   patch tree reduce : 1.68 us    (0.9%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.7%)
   LB compute        : 161.66 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9386809267795624e-20,-2.1520530285085313e-19,6.824144243027633e-19)
    sum a = (8.428414268469252e-20,-7.331140794518583e-20,1.2084139254213158e-19)
    sum e = 7.856799286193147e-10
    sum de = -4.342698215903395e-24
Info: cfl dt = 0.040120953942539346 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5750e+04 | 2592 |      1 | 4.649e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3106.5650354002355 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.730374612213758, dt = 0.040120953942539346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (2.7%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 161.05 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.972202001989976e-20,-2.1780914274326987e-19,6.869166553094668e-19)
    sum a = (2.4764187268681187e-19,-6.505378786828727e-20,-2.3419547670421142e-21)
    sum e = 7.856799816505344e-10
    sum de = 7.134432783269864e-24
Info: cfl dt = 0.04012103211053206 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6252e+04 | 2592 |      1 | 4.608e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3134.5807465147927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.7704955661563, dt = 0.04012103211053206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (3.0%)
   patch tree reduce : 1.44 us    (0.8%)
   gen split merge   : 822.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.7%)
   LB compute        : 166.19 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6875560902497264e-20,-2.2023921529727966e-19,6.843515769651768e-19)
    sum a = (3.218894110879159e-19,1.5109832617323253e-19,-1.0991932299331832e-19)
    sum e = 7.856800326778988e-10
    sum de = -3.101927297073854e-25
Info: cfl dt = 0.040121109437065205 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7157e+04 | 2592 |      1 | 4.535e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3185.0213730207806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.81061659826683, dt = 0.040121109437065205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.7%)
   patch tree reduce : 1.83 us    (1.2%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (1.0%)
   LB compute        : 137.37 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3103250855804434e-21,-2.0984131462095153e-19,6.777834342556085e-19)
    sum a = (1.1044044048858262e-19,1.2469888760475708e-19,-4.661113625874001e-20)
    sum e = 7.856800816450668e-10
    sum de = 5.169878828456423e-25
Info: cfl dt = 0.04012118590621852 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8424e+04 | 2592 |      1 | 4.437e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3255.6156526298514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.850737707703896, dt = 0.04012118590621852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.54 us    (2.9%)
   patch tree reduce : 1.58 us    (1.0%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (1.0%)
   LB compute        : 137.41 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2183064477479362e-21,-2.0537841068607495e-19,6.771833375365838e-19)
    sum a = (-6.263182856471136e-20,3.8673348683739297e-20,1.1740694883502925e-19)
    sum e = 7.856801284993775e-10
    sum de = -4.446095792472524e-24
Info: cfl dt = 0.040121261502458844 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8456e+04 | 2592 |      1 | 4.434e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3257.41462134738 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 23.890858893610115, dt = 0.040121261502458844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.3%)
   patch tree reduce : 1.22 us    (0.6%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.8%)
   LB compute        : 176.60 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.114072028873563e-21,-2.055476592520883e-19,6.851841524750231e-19)
    sum a = (9.139422564721498e-20,-5.579507998231303e-20,-4.5428334154487834e-20)
    sum e = 7.856801731917092e-10
    sum de = 6.203854594147708e-25
Info: cfl dt = 0.04012133621064232 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7331e+04 | 2592 |      1 | 4.521e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3194.6842712830494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.930980155112575, dt = 0.0015251560969566924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1.88 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.2%)
   LB compute        : 471.54 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7422462282967e-21,-2.075233897818001e-19,6.818482886888949e-19)
    sum a = (6.259896476548547e-20,-4.356045237706139e-20,6.16431695679993e-20)
    sum e = 7.856774768738663e-10
    sum de = 9.305781891221561e-25
Info: cfl dt = 0.04012133903290163 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7366e+04 | 2592 |      1 | 4.518e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.5171541320997 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 663                                                     [SPH][rank=0]
Info: time since start : 149.001020917 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008418010000000001 s
sph::RenderFieldGetter compute custom field took :  0.0007504530000000001 s
rho_t_ampl=0.000313265, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000242243, eps_t_phi=7.98073e-12 rad
vx_t_ampl=-8.5223e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24.30s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 23.932505311209532, dt = 0.04012133903290163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.82 us   (4.5%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 235.20 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.425348382871077e-21,-2.09260652368379e-19,6.844031455725208e-19)
    sum a = (9.60986785064019e-20,3.6840858103934744e-20,3.5198699081141605e-20)
    sum e = 7.856802008230903e-10
    sum de = -1.9645539548134407e-24
Info: cfl dt = 0.04012141280368735 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6269e+04 | 2592 |      1 | 4.606e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3135.5301642502545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 23.972626650242432, dt = 0.04012141280368735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (2.8%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 941.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 158.66 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 721.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.228165587515705e-21,-2.0618418996334485e-19,6.85284873325541e-19)
    sum a = (3.138492826073006e-21,1.0842743008662396e-21,1.2670000274411739e-19)
    sum e = 7.856802484633657e-10
    sum de = -2.3781442610899546e-24
Info: cfl dt = 0.04012148565664762 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6145e+04 | 2592 |      1 | 4.617e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3128.6223993754597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.01274806304612, dt = 0.04012148565664762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (3.4%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 141.60 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9624336831101985e-22,-2.068472171127273e-19,6.922038464565251e-19)
    sum a = (5.1979028045637384e-20,-1.3844034607935918e-19,-6.53326866148187e-20)
    sum e = 7.8568028650335e-10
    sum de = 5.583469134732937e-24
Info: cfl dt = 0.04012155757798278 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7899e+04 | 2592 |      1 | 4.477e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3226.352564114635 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.05286954870277, dt = 0.04012155757798278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.70 us    (3.0%)
   patch tree reduce : 1.56 us    (1.0%)
   gen split merge   : 902.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 138.85 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 762.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.532858416783751e-21,-2.1521167021195316e-19,6.857302789129337e-19)
    sum a = (-4.934762364161995e-19,-1.0510007311437464e-19,1.6772553992295822e-21)
    sum e = 7.856803220397861e-10
    sum de = 2.1713491079516976e-24
Info: cfl dt = 0.040121628554110236 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7731e+04 | 2592 |      1 | 4.490e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3217.011924628599 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.092991106280753, dt = 0.040121628554110236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (3.0%)
   patch tree reduce : 1.80 us    (1.1%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.8%)
   LB compute        : 148.96 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7421554074087086e-20,-2.1875171758481755e-19,6.871418447544456e-19)
    sum a = (3.2895184154156084e-19,1.0513083157646262e-19,8.21252274392062e-20)
    sum e = 7.856803552219265e-10
    sum de = -3.7223127564886245e-24
Info: cfl dt = 0.040121698571876536 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7752e+04 | 2592 |      1 | 4.488e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3218.1942066076235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.133112734834864, dt = 0.040121698571876536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (2.7%)
   patch tree reduce : 1.66 us    (0.9%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.7%)
   LB compute        : 158.42 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4384939025614352e-21,-2.103244124695722e-19,6.920507002009493e-19)
    sum a = (-8.210362960605436e-20,-7.319053078365808e-20,-8.685182781511612e-20)
    sum e = 7.856803860222921e-10
    sum de = 5.2732764050255514e-24
Info: cfl dt = 0.040121767618528016 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6222e+04 | 2592 |      1 | 4.610e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3132.931852523388 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.17323443340674, dt = 0.040121767618528016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (3.2%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 1.08 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 134.69 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.093413245805245e-21,-2.1683493649496722e-19,6.851762281099048e-19)
    sum a = (-8.982333604421718e-20,7.643239052823378e-20,1.8900189842550312e-20)
    sum e = 7.856804144171766e-10
    sum de = 3.412120026781239e-24
Info: cfl dt = 0.04012183568171203 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7318e+04 | 2592 |      1 | 4.522e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3194.0311767577696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.21335620102527, dt = 0.04012183568171203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (3.1%)
   patch tree reduce : 1.48 us    (1.0%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.8%)
   LB compute        : 137.38 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2668994601582659e-20,-2.107711547402992e-19,6.880560173599333e-19)
    sum a = (3.2722156251231743e-19,-3.868295107507561e-20,-6.950940988279423e-21)
    sum e = 7.856804403862681e-10
    sum de = 1.34416849539867e-24
Info: cfl dt = 0.04012190274947813 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7826e+04 | 2592 |      1 | 4.482e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3222.3222176162712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.253478036706984, dt = 0.04012190274947813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (3.4%)
   patch tree reduce : 1.83 us    (1.2%)
   gen split merge   : 1.01 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 140.50 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 751.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.823930092152902e-21,-2.1462607838949672e-19,6.872585349698963e-19)
    sum a = (2.384252201939095e-19,2.1045717708347617e-19,4.2023837228152474e-20)
    sum e = 7.856804639129842e-10
    sum de = -3.2053248736429822e-24
Info: cfl dt = 0.04012196881027904 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7743e+04 | 2592 |      1 | 4.489e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3217.711479569414 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.293599939456463, dt = 0.0015190885895783879 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (3.0%)
   patch tree reduce : 1.46 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (1.0%)
   LB compute        : 140.58 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.440364144742708e-21,-2.0930707248478556e-19,6.883048535458981e-19)
    sum a = (-7.671560972296882e-20,-9.015515771702615e-21,-1.283651737379676e-19)
    sum e = 7.856775290293631e-10
    sum de = -2.1713491079516976e-24
Info: cfl dt = 0.04012197129160156 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7565e+04 | 2592 |      1 | 4.503e-02 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 121.45295498150487 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 673                                                     [SPH][rank=0]
Info: time since start : 149.65400921100002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000725376 s
sph::RenderFieldGetter compute custom field took :  0.0005868280000000001 s
rho_t_ampl=0.000296189, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000236092, eps_t_phi=8.79785e-12 rad
vx_t_ampl=-6.80162e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 24.66s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 24.29511902804604, dt = 0.04012197129160156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.35 us   (5.1%)
   patch tree reduce : 1.91 us    (0.9%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 194.48 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.654454473919563e-21,-2.0983679584855797e-19,6.830251717291555e-19)
    sum a = (1.9701683316928134e-19,-2.2265860711654105e-19,3.7000678607419547e-20)
    sum e = 7.856804780054931e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.04012203629651813 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3425e+04 | 2592 |      1 | 5.969e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2419.83661661176 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 24.335240999337643, dt = 0.04012203629651813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (2.8%)
   patch tree reduce : 1.71 us    (1.0%)
   gen split merge   : 971.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 160.51 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 682.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.733894047158239e-20,-2.230603670620776e-19,6.87827116289477e-19)
    sum a = (-1.523105638923346e-19,-9.152881317498228e-20,-1.6173444065344287e-20)
    sum e = 7.856804995239026e-10
    sum de = 6.2038545941477076e-24
Info: cfl dt = 0.0401221002710761 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3688e+04 | 2592 |      1 | 5.933e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2434.4947914053587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.375363035634162, dt = 0.0401221002710761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (3.0%)
   patch tree reduce : 1.49 us    (0.8%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.8%)
   LB compute        : 165.07 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0586792043980764e-21,-2.2409434434522237e-19,6.861114767049857e-19)
    sum a = (-6.255295544656922e-20,-1.3204795200727535e-19,2.472873726423224e-20)
    sum e = 7.856805157806231e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.0401221632061097 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4222e+04 | 2592 |      1 | 5.861e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2464.2991756988713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.41548513590524, dt = 0.0401221632061097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.69 us    (2.7%)
   patch tree reduce : 1.95 us    (1.1%)
   gen split merge   : 881.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.9%)
   LB compute        : 153.32 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.375112180499453e-21,-2.3020988658367116e-19,6.879241878477225e-19)
    sum a = (-2.406303811219671e-19,4.964556992638309e-20,-6.913883007663984e-20)
    sum e = 7.856805293456636e-10
    sum de = 4.03250548619601e-24
Info: cfl dt = 0.04012222509166742 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3898e+04 | 2592 |      1 | 5.905e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2446.2532282959514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.45560729911135, dt = 0.04012222509166742 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (2.7%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 1.06 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.7%)
   LB compute        : 156.80 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 911.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.801628119123289e-21,-2.2457395041517523e-19,6.83267099216484e-19)
    sum a = (8.583038443827089e-20,-1.4771276433157298e-20,-9.901493305261359e-21)
    sum e = 7.856805404373563e-10
    sum de = 2.7917345673664684e-24
Info: cfl dt = 0.040122285918243475 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.4357e+04 | 2592 |      1 | 5.843e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2471.811998586028 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.495729524203018, dt = 0.040122285918243475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.5%)
   patch tree reduce : 1.97 us    (1.1%)
   gen split merge   : 951.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.8%)
   LB compute        : 165.41 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 872.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.037544787121222e-23,-2.2645293813591584e-19,6.840581955509502e-19)
    sum a = (-2.429850723365025e-19,1.0604952881388527e-19,-5.161730125921379e-20)
    sum e = 7.856805490587763e-10
    sum de = -5.7385654995866295e-24
Info: cfl dt = 0.04012234567673808 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5657e+04 | 2592 |      1 | 4.657e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3101.5300328762196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.53585181012126, dt = 0.04012234567673808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.7%)
   patch tree reduce : 1.89 us    (1.2%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 143.08 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6021102122623984e-20,-2.1978199769054937e-19,6.811503215598977e-19)
    sum a = (-9.012896937701801e-20,1.6945650656799429e-19,-3.6719527103611197e-20)
    sum e = 7.856805552169525e-10
    sum de = -5.169878828456423e-26
Info: cfl dt = 0.04012240435845775 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9750e+04 | 2592 |      1 | 4.338e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3329.6220848205726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.575974155798, dt = 0.04012240435845775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.4%)
   patch tree reduce : 1.44 us    (0.9%)
   gen split merge   : 1.08 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.8%)
   LB compute        : 142.21 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6612650508690102e-20,-2.1170181645462754e-19,6.799759126678672e-19)
    sum a = (-7.077547801288823e-20,-4.4640259255220354e-20,-1.9103644398421902e-19)
    sum e = 7.856805589221231e-10
    sum de = 3.1019272970738538e-24
Info: cfl dt = 0.040122461955115256 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9611e+04 | 2592 |      1 | 4.348e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3321.879731307236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.616096560156457, dt = 0.040122461955115256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.4%)
   patch tree reduce : 1.20 us    (0.6%)
   gen split merge   : 942.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.8%)
   LB compute        : 168.75 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.931076842513611e-20,-2.177894244637343e-19,6.692152773428029e-19)
    sum a = (2.083039050134151e-19,4.534778090777348e-20,-1.7148665036667838e-19)
    sum e = 7.856805601876102e-10
    sum de = 1.7577588016751838e-24
Info: cfl dt = 0.04012251845882925 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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 | 2592 |      1 | 5.927e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2437.0843709116134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.65621902211157, dt = 0.0015137227709800527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (3.0%)
   patch tree reduce : 1.71 us    (1.1%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (1.0%)
   LB compute        : 140.97 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.312087184093872e-20,-2.1591742030032926e-19,6.693478870205835e-19)
    sum a = (8.557733318423151e-21,-1.8209376706344945e-19,3.012536947169927e-20)
    sum e = 7.856775453120651e-10
    sum de = -1.3958672836832342e-24
Info: cfl dt = 0.04012252056917919 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4144e+04 | 2592 |      1 | 5.872e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.8088728807781 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 683                                                     [SPH][rank=0]
Info: time since start : 150.399861206 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006980150000000001 s
sph::RenderFieldGetter compute custom field took :  0.000590655 s
rho_t_ampl=0.000283003, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000229845, eps_t_phi=9.69225e-12 rad
vx_t_ampl=-5.03749e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.02s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 24.65773274488255, dt = 0.04012252056917919 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.79 us   (4.6%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.7%)
   LB compute        : 209.37 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2803736178408829e-20,-2.2339619401041723e-19,6.707091851295176e-19)
    sum a = (-1.2937327522262094e-19,-2.009023098818217e-20,-1.715484996097444e-19)
    sum e = 7.856805601865678e-10
    sum de = -9.305781891221561e-25
Info: cfl dt = 0.040122575932685416 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.4059e+04 | 2592 |      1 | 5.883e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2455.243208169302 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.697855265451732, dt = 0.040122575932685416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.6%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 140.04 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1004897275231016e-20,-2.2095523532291387e-19,6.597803854475386e-19)
    sum a = (-1.806687362443597e-20,9.510123652505283e-20,-3.042588884017879e-20)
    sum e = 7.856805549636525e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.04012263018642599 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4814e+04 | 2592 |      1 | 5.784e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2497.2741562319857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.737977841384417, dt = 0.04012263018642599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (2.0%)
   patch tree reduce : 862.00 ns  (0.5%)
   gen split merge   : 841.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.7%)
   LB compute        : 155.13 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.93764960235879e-20,-2.1482962854595212e-19,6.613907200947141e-19)
    sum a = (9.695642366619777e-20,-4.0812371215854756e-20,-1.2548019117824363e-19)
    sum e = 7.856805491713077e-10
    sum de = -1.0856745539758488e-24
Info: cfl dt = 0.04012268332581407 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4208e+04 | 2592 |      1 | 5.863e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2463.5420491623363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.778100471570845, dt = 0.04012268332581407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (1.6%)
   patch tree reduce : 721.00 ns  (0.4%)
   gen split merge   : 541.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.3%)
   LB compute        : 160.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 841.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3349275245558693e-20,-2.1918962770950265e-19,6.544492038102544e-19)
    sum a = (-6.767642174588631e-20,-3.73121455247086e-20,-6.584169978855079e-20)
    sum e = 7.856805407815806e-10
    sum de = -1.2924697071141057e-24
Info: cfl dt = 0.04012273534455592 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5184e+04 | 2592 |      1 | 5.737e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2517.9015789475907 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.81822315489666, dt = 0.04012273534455592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (2.0%)
   patch tree reduce : 811.00 ns  (0.5%)
   gen split merge   : 691.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.6%)
   LB compute        : 149.08 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 1.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (59.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9322270754865173e-20,-2.206179705833581e-19,6.530038828670445e-19)
    sum a = (-1.427685597870959e-19,7.931418627254076e-20,-1.1255439843963503e-19)
    sum e = 7.85680530065444e-10
    sum de = 9.822769774067204e-25
Info: cfl dt = 0.04012278623680793 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5163e+04 | 2592 |      1 | 5.739e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2516.738733737697 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.858345890241218, dt = 0.04012278623680793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (1.8%)
   patch tree reduce : 862.00 ns  (0.6%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.5%)
   LB compute        : 143.02 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 1.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (57.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6475076656381298e-20,-2.1508945795858187e-19,6.475507661758475e-19)
    sum a = (7.619471850523839e-21,-2.0019835703246575e-19,1.3070975724703326e-20)
    sum e = 7.856805170523461e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.040122835997128015 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9077e+04 | 2592 |      1 | 4.388e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3292.1205727112647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 24.898468676478025, dt = 0.040122835997128015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (1.8%)
   patch tree reduce : 942.00 ns  (0.6%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 731.00 ns  (0.5%)
   LB compute        : 144.56 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 1.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3241278812553194e-20,-2.2873430199842843e-19,6.505954308079037e-19)
    sum a = (-3.668355860992117e-19,1.3708235227572163e-19,5.527175399796377e-20)
    sum e = 7.856805017756864e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.040122884620475016 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1534e+04 | 2592 |      1 | 4.212e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3429.058068483226 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.938591512475153, dt = 0.040122884620475016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (2.2%)
   patch tree reduce : 891.00 ns  (0.6%)
   gen split merge   : 571.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.7%)
   LB compute        : 128.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 1.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.550157321821341e-20,-2.1647610488716947e-19,6.536597004691109e-19)
    sum a = (1.6643378160966314e-19,6.627503745733332e-20,-6.236807172432447e-20)
    sum e = 7.856804842711936e-10
    sum de = -2.6366382025127757e-24
Info: cfl dt = 0.0401229321022073 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0762e+04 | 2592 |      1 | 4.266e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3386.060151360064 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 24.97871439709563, dt = 0.0401229321022073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (2.1%)
   patch tree reduce : 941.00 ns  (0.7%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.7%)
   LB compute        : 129.71 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 1.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.81379848972116e-20,-2.1522748591533061e-19,6.487972859849029e-19)
    sum a = (5.2752970517407223e-20,1.2292616805979464e-19,1.06096474432498e-19)
    sum e = 7.856804645772306e-10
    sum de = -1.809457589959748e-24
Info: cfl dt = 0.04012297843808152 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0320e+04 | 2592 |      1 | 4.297e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3361.4009590981077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.018837329197837, dt = 0.0015091325212210904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (1.7%)
   patch tree reduce : 691.00 ns  (0.5%)
   gen split merge   : 581.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.9%)
   LB compute        : 135.26 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.29 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 762.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0249483997475377e-20,-2.1390964756637222e-19,6.523370453983496e-19)
    sum a = (-2.4936393576624876e-19,-5.619442649259395e-20,-4.324361129044264e-20)
    sum e = 7.856775265217777e-10
    sum de = -2.5849394142282115e-25
Info: cfl dt = 0.040122980158605395 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3356e+04 | 2592 |      1 | 5.978e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87451034075009 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 693                                                     [SPH][rank=0]
Info: time since start : 151.107768353 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007293610000000001 s
sph::RenderFieldGetter compute custom field took :  0.000562251 s
rho_t_ampl=0.000273749, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000223643, eps_t_phi=1.01843e-11 rad
vx_t_ampl=-3.27742e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.38s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 25.020346461719058, dt = 0.040122980158605395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.66 us   (5.0%)
   patch tree reduce : 2.02 us    (0.9%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 207.48 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0471768746690125e-20,-2.1629679178264317e-19,6.504892958505458e-19)
    sum a = (4.0642003226680266e-19,1.2336916180342245e-20,1.7212883039243003e-20)
    sum e = 7.856804514256153e-10
    sum de = -4.1359030627651384e-25
Info: cfl dt = 0.04012302530411044 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2174e+04 | 2592 |      1 | 6.146e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2350.2066255502077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.060469441877665, dt = 0.04012302530411044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (2.8%)
   patch tree reduce : 1.47 us    (0.8%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.8%)
   LB compute        : 159.71 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.09288564325715e-20,-2.1443074418284782e-19,6.523927761535514e-19)
    sum a = (-1.5962275922009633e-19,-4.308482590779599e-20,2.4146811326327385e-20)
    sum e = 7.856804216391826e-10
    sum de = -9.564275832644382e-25
Info: cfl dt = 0.04012306929352408 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.2250e+04 | 2592 |      1 | 6.135e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2354.458740261626 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.100592467181777, dt = 0.04012306929352408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.7%)
   patch tree reduce : 1.77 us    (1.1%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 141.73 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8796082476710155e-20,-2.1727243582216196e-19,6.535007254276361e-19)
    sum a = (1.0199444408752753e-19,6.641383565937643e-20,4.7274612134723105e-20)
    sum e = 7.856803958038812e-10
    sum de = -3.877409121342317e-25
Info: cfl dt = 0.04012311212666904 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9020e+04 | 2592 |      1 | 4.392e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3288.9591910963045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.1407155364753, dt = 0.04012311212666904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.4%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.7%)
   LB compute        : 152.21 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.941182460775574e-20,-2.1240202077688427e-19,6.558615091682524e-19)
    sum a = (6.352736709361701e-20,-1.134062956693471e-20,8.021942214857743e-20)
    sum e = 7.856803677040553e-10
    sum de = -1.370017889540952e-24
Info: cfl dt = 0.040123153800841124 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8376e+04 | 2592 |      1 | 4.440e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3253.10287660139 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 25.18083864860197, dt = 0.040123153800841124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (2.6%)
   patch tree reduce : 1.92 us    (1.1%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 153.35 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (58.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7638822639518684e-20,-2.1441821485939293e-19,6.597410895340405e-19)
    sum a = (4.761800188836107e-20,-1.7560124110309923e-19,1.5726609913112854e-19)
    sum e = 7.856803376431936e-10
    sum de = -1.7577588016751838e-24
Info: cfl dt = 0.040123194313778865 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5843e+04 | 2592 |      1 | 4.642e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3111.927819149141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.22096180240281, dt = 0.040123194313778865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (2.5%)
   patch tree reduce : 1.38 us    (0.9%)
   gen split merge   : 942.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 133.33 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 701.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6109012785553257e-20,-2.2476291726072417e-19,6.675967856236503e-19)
    sum a = (-3.9497028461650073e-19,-3.364631966276001e-19,5.645686206594766e-20)
    sum e = 7.856803056708846e-10
    sum de = 1.2666203129718236e-24
Info: cfl dt = 0.04012323366360787 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9726e+04 | 2592 |      1 | 4.340e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3328.3539699706957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.26108499671659, dt = 0.04012323366360787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (3.3%)
   patch tree reduce : 1.26 us    (0.8%)
   gen split merge   : 761.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 135.48 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.076754293972319e-20,-2.4148915327548876e-19,6.678396231885668e-19)
    sum a = (8.10569176007096e-20,8.442897447487476e-20,-1.5409573672011666e-19)
    sum e = 7.856802718401627e-10
    sum de = 5.169878828456423e-26
Info: cfl dt = 0.040123271848839154 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9089e+04 | 2592 |      1 | 4.387e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3292.863138183336 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.301208230380198, dt = 0.040123271848839154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (2.0%)
   patch tree reduce : 1.23 us    (0.7%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.5%)
   LB compute        : 161.93 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.799174099065637e-20,-2.296577747566761e-19,6.574327724935683e-19)
    sum a = (-1.3301458417685014e-19,-1.2124703331809654e-19,1.1644534449369949e-19)
    sum e = 7.856802362057676e-10
    sum de = -1.7577588016751838e-24
Info: cfl dt = 0.04012330886836685 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8759e+04 | 2592 |      1 | 4.411e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3274.4300150791432 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.341331502229036, dt = 0.04012330886836685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (2.1%)
   patch tree reduce : 1.14 us    (0.8%)
   gen split merge   : 882.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.6%)
   LB compute        : 130.79 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 2.76 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7690669737198735e-20,-2.386486940286456e-19,6.675324416909052e-19)
    sum a = (2.771174142125174e-19,-2.998523851182466e-20,-2.2631447104081877e-19)
    sum e = 7.856801988240034e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.040123344721465865 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0822e+04 | 2592 |      1 | 4.262e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3389.4428127999913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.381454811097402, dt = 0.0015053674581650967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (1.9%)
   patch tree reduce : 721.00 ns  (0.5%)
   gen split merge   : 441.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 511.00 ns  (0.3%)
   LB compute        : 137.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.64 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.898669251222035e-20,-2.3686603831938595e-19,6.603154262777033e-19)
    sum a = (4.0288224428013505e-19,-1.3687782647522673e-19,-3.586534851059415e-20)
    sum e = 7.856774769119185e-10
    sum de = 1.1632227364026952e-24
Info: cfl dt = 0.04012334604404713 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0801e+04 | 2592 |      1 | 4.263e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.12098901683666 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 703                                                     [SPH][rank=0]
Info: time since start : 151.767990346 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008172930000000001 s
sph::RenderFieldGetter compute custom field took :  0.000728591 s
rho_t_ampl=0.000268369, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000217615, eps_t_phi=1.09055e-11 rad
vx_t_ampl=-1.56579e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 25.75s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 25.382960178555567, dt = 0.04012334604404713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.36 us   (5.2%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 192.45 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2780731518950703e-20,-2.4243624688943005e-19,6.590197364441738e-19)
    sum a = (1.5097629364376325e-20,1.5319850266766926e-19,-9.463674255530654e-20)
    sum e = 7.856801746821823e-10
    sum de = 5.040631857745012e-25
Info: cfl dt = 0.04012338068990519 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8595e+04 | 2592 |      1 | 4.424e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3265.299258613583 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.423083524599615, dt = 0.04012338068990519 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (3.1%)
   patch tree reduce : 1.67 us    (1.1%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.8%)
   LB compute        : 132.15 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9888760494021545e-20,-2.3046725121135895e-19,6.54043537905044e-19)
    sum a = (4.789668690579667e-19,-2.108541358333446e-20,-1.6521579496318508e-21)
    sum e = 7.856801247436119e-10
    sum de = -8.142559154818866e-25
Info: cfl dt = 0.04012341416553794 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9379e+04 | 2592 |      1 | 4.365e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3309.016077304912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.46320690528952, dt = 0.04012341416553794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.37 us    (2.9%)
   patch tree reduce : 2.30 us    (1.5%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.8%)
   LB compute        : 133.10 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 640.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.651805943707275e-21,-2.348003431392932e-19,6.558426756305706e-19)
    sum a = (-6.137643143428216e-20,-3.097520911381847e-20,1.0294096799013997e-19)
    sum e = 7.85680082662557e-10
    sum de = 2.3264454728053903e-25
Info: cfl dt = 0.04012344647490466 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9673e+04 | 2592 |      1 | 4.344e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3325.3823585956557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.50333031945506, dt = 0.04012344647490466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (2.0%)
   patch tree reduce : 1.38 us    (0.8%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 167.07 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.69336132694818e-21,-2.362512798751165e-19,6.620713387052399e-19)
    sum a = (-3.828879088311003e-19,5.1690904955861605e-20,2.818056428078048e-20)
    sum e = 7.856800388268241e-10
    sum de = -9.04728794979874e-26
Info: cfl dt = 0.04012347761873455 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8156e+04 | 2592 |      1 | 4.457e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3240.847271041637 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.543453765929964, dt = 0.04012347761873455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.07 us    (2.6%)
   patch tree reduce : 1.46 us    (0.9%)
   gen split merge   : 951.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (1.0%)
   LB compute        : 136.58 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.652088057655239e-20,-2.3251774688430966e-19,6.617022184171349e-19)
    sum a = (2.249789967406344e-19,-1.1180706103951698e-19,-8.562695610099968e-20)
    sum e = 7.856799935506501e-10
    sum de = 4.52364397489937e-26
Info: cfl dt = 0.04012350759818101 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9095e+04 | 2592 |      1 | 4.386e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3293.1680648349047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.5835772435487, dt = 0.04012350759818101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (2.8%)
   patch tree reduce : 1.53 us    (0.9%)
   gen split merge   : 731.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.8%)
   LB compute        : 150.87 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 931.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.290044681643343e-21,-2.40286338223821e-19,6.559833878449243e-19)
    sum a = (3.7276092909964065e-19,-1.125816197075223e-19,8.124763238804733e-20)
    sum e = 7.856799468962871e-10
    sum de = 8.982664464443035e-25
Info: cfl dt = 0.04012353641476102 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9598e+04 | 2592 |      1 | 4.349e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3321.2442906952087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.62370075114688, dt = 0.04012353641476102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (3.3%)
   patch tree reduce : 1.63 us    (1.1%)
   gen split merge   : 731.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 136.25 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2628531048785775e-20,-2.4481229957346227e-19,6.625911270912703e-19)
    sum a = (-1.0394655376154571e-19,2.775242577769967e-20,2.2345918877336156e-20)
    sum e = 7.85679898928801e-10
    sum de = 2.5849394142282115e-25
Info: cfl dt = 0.04012356407035254 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9328e+04 | 2592 |      1 | 4.369e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3306.196532552029 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.663824287561642, dt = 0.04012356407035254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (2.9%)
   patch tree reduce : 1.41 us    (0.8%)
   gen split merge   : 711.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (1.0%)
   LB compute        : 154.48 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1075100339126733e-21,-2.4088343237600647e-19,6.62306052475552e-19)
    sum a = (-1.2813430999180469e-19,-5.2604852347302385e-20,-4.800600211326455e-20)
    sum e = 7.856798497141054e-10
    sum de = -1.0258978300218214e-24
Info: cfl dt = 0.04012359056719137 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.5571e+04 | 2592 |      1 | 4.664e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3096.8158374078794 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.703947851631995, dt = 0.04012359056719137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (3.1%)
   patch tree reduce : 1.51 us    (1.0%)
   gen split merge   : 881.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 133.75 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.726141358128679e-21,-2.4460546303708426e-19,6.589684943973913e-19)
    sum a = (9.331347152200727e-20,1.8394677184292704e-19,-7.789185719519131e-20)
    sum e = 7.856797993187801e-10
    sum de = 3.4775513057038908e-25
Info: cfl dt = 0.040123615907867796 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9552e+04 | 2592 |      1 | 4.352e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3318.6811353355147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.744071442199186, dt = 0.001502453192887998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (2.7%)
   patch tree reduce : 1.33 us    (0.9%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 136.54 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.147392530980809e-21,-2.3958592850281907e-19,6.582519016212617e-19)
    sum a = (-1.6254435097127842e-19,1.9551344272891237e-19,9.073869240183753e-20)
    sum e = 7.856774033409199e-10
    sum de = 7.674038885990003e-26
Info: cfl dt = 0.040123616834491706 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0045e+04 | 2592 |      1 | 4.317e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 125.2985429680666 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 713                                                     [SPH][rank=0]
Info: time since start : 152.397864637 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008678290000000001 s
sph::RenderFieldGetter compute custom field took :  0.000707419 s
rho_t_ampl=0.00026671, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000211881, eps_t_phi=1.13087e-11 rad
vx_t_ampl=5.70736e-08, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26.11s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 25.745573895392074, dt = 0.040123616834491706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.76 us   (4.2%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 227.75 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.859155976948159e-21,-2.3173661545645915e-19,6.620193459011764e-19)
    sum a = (-1.2151061125782548e-19,-9.13825435935839e-20,1.7870991223780998e-19)
    sum e = 7.85679767200026e-10
    sum de = 7.981000441429603e-25
Info: cfl dt = 0.040123640982677636 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.6972e+04 | 2592 |      1 | 4.550e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3174.914628321068 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.785697512226566, dt = 0.040123640982677636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (2.5%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.7%)
   LB compute        : 163.74 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2915678494522036e-20,-2.4115579111209106e-19,6.709547000183277e-19)
    sum a = (-4.472270117655969e-20,-1.284979427952706e-19,5.821068551430981e-20)
    sum e = 7.856797030409394e-10
    sum de = -3.2311742677852644e-26
Info: cfl dt = 0.04012366397703482 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7396e+04 | 2592 |      1 | 4.516e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3198.5090642581417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.825821153209244, dt = 0.04012366397703482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (2.3%)
   patch tree reduce : 1.50 us    (0.9%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 153.24 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 741.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3152503247693644e-20,-2.470558700668651e-19,6.708728921479482e-19)
    sum a = (-4.31217411972702e-19,-1.2092727882156584e-19,-9.40664439198397e-20)
    sum e = 7.856796497055332e-10
    sum de = -3.2311742677852644e-26
Info: cfl dt = 0.040123685825295914 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9742e+04 | 2592 |      1 | 4.339e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3329.2341782085196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.86594481718628, dt = 0.040123685825295914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (2.9%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.9%)
   LB compute        : 136.10 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8203345005122704e-20,-2.5175498255867784e-19,6.640436415189339e-19)
    sum a = (9.453271847328799e-20,-2.5923678590025693e-19,8.369852609018751e-20)
    sum e = 7.856795952308562e-10
    sum de = -1.809457589959748e-25
Info: cfl dt = 0.040123706531389455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0083e+04 | 2592 |      1 | 4.314e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3348.269002299644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.906068503011575, dt = 0.040123706531389455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (3.2%)
   patch tree reduce : 1.35 us    (0.9%)
   gen split merge   : 1.31 us    (0.9%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 134.54 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 731.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3884176884909772e-20,-2.6493542003571345e-19,6.709682295206285e-19)
    sum a = (-6.408112211057335e-20,6.530920120789602e-20,3.7056749592069506e-20)
    sum e = 7.856795399209468e-10
    sum de = 2.5849394142282115e-26
Info: cfl dt = 0.040123726099639476 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9561e+04 | 2592 |      1 | 4.352e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3319.1657453856546 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 25.946192209542964, dt = 0.040123726099639476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.7%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 952.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.9%)
   LB compute        : 136.41 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.964355769924793e-20,-2.5580092704087584e-19,6.715193639153016e-19)
    sum a = (-1.9444195449993245e-19,-1.4021232105387043e-19,5.790977292811945e-20)
    sum e = 7.856794838431059e-10
    sum de = 1.3829425866120931e-24
Info: cfl dt = 0.04012374453470225 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.7504e+04 | 2592 |      1 | 5.456e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2647.268083957077 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 25.986315935642605, dt = 0.04012374453470225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.23 us    (2.7%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.7%)
   LB compute        : 138.95 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0062203648837405e-20,-2.655483298912764e-19,6.742612713486529e-19)
    sum a = (-1.5609318718323516e-19,-3.0348683888935605e-19,8.958913724217485e-21)
    sum e = 7.856794270664402e-10
    sum de = 2.1971985020939798e-25
Info: cfl dt = 0.04012376184156291 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.3249e+04 | 2592 |      1 | 5.993e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2410.1734749302927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.026439680177308, dt = 0.04012376184156291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (2.0%)
   patch tree reduce : 1.15 us    (0.8%)
   gen split merge   : 681.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 133.64 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5525399472652184e-20,-2.8100027209105694e-19,6.73638690784589e-19)
    sum a = (5.462292069336067e-20,1.46708621216163e-20,1.3726911253511024e-19)
    sum e = 7.856793696601944e-10
    sum de = -1.6802106192483375e-25
Info: cfl dt = 0.040123778025531624 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.3495e+04 | 2592 |      1 | 5.959e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2423.8687513290406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.06656344201887, dt = 0.040123778025531624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (1.9%)
   patch tree reduce : 1.11 us    (0.7%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.7%)
   LB compute        : 136.43 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9128460953331656e-20,-2.7403478984512842e-19,6.817205901151357e-19)
    sum a = (3.433149649932384e-19,7.471060987207147e-20,-7.887174618261041e-22)
    sum e = 7.856793116934178e-10
    sum de = -1.0598251598335667e-24
Info: cfl dt = 0.04012379309223943 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7981e+04 | 2592 |      1 | 4.470e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3231.1138582994945 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.106687220044403, dt = 0.0015003921841802992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (2.0%)
   patch tree reduce : 921.00 ns  (0.6%)
   gen split merge   : 561.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.6%)
   LB compute        : 135.04 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 1.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.279807162744356e-20,-2.7271181652754097e-19,6.789497058668797e-19)
    sum a = (2.0539874516184597e-20,-1.6970557822134618e-21,-1.9290387732914927e-19)
    sum e = 7.856773142732633e-10
    sum de = -1.2407709188295415e-24
Info: cfl dt = 0.04012379363420547 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9515e+04 | 2592 |      1 | 4.355e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.02168138371185 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 723                                                     [SPH][rank=0]
Info: time since start : 153.07192727 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007897830000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006875690000000001 s
rho_t_ampl=0.000268533, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000206542, eps_t_phi=1.20641e-11 rad
vx_t_ampl=1.55566e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26.47s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 26.108187612228583, dt = 0.04012379363420547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.00 us   (4.7%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 228.39 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2269786054887293e-20,-2.7283752055958e-19,6.710655464594846e-19)
    sum a = (6.280600670060861e-20,-4.946435688346405e-20,-9.051922846718137e-20)
    sum e = 7.856792750619386e-10
    sum de = 1.2149215246872594e-24
Info: cfl dt = 0.040123807552416235 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7185e+04 | 2592 |      1 | 4.533e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3186.781971187926 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.14831140586279, dt = 0.040123807552416235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (2.9%)
   patch tree reduce : 1.65 us    (0.9%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.8%)
   LB compute        : 158.85 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.890371141917496e-20,-2.757790359890428e-19,6.694876006178237e-19)
    sum a = (1.2337891824381763e-19,1.9580944799553372e-20,9.671257669603699e-20)
    sum e = 7.856792033642532e-10
    sum de = 7.237830359838992e-25
Info: cfl dt = 0.04012382036138151 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7916e+04 | 2592 |      1 | 4.475e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3227.513343213723 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.188435213415204, dt = 0.04012382036138151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (2.9%)
   patch tree reduce : 1.76 us    (1.0%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.8%)
   LB compute        : 154.61 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (57.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.268670220061621e-20,-2.7361043603762405e-19,6.771243051309176e-19)
    sum a = (1.36642747611389e-19,-6.711827633075213e-20,3.09150782835968e-19)
    sum e = 7.856791443212089e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.040123832072173994 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8426e+04 | 2592 |      1 | 4.436e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3255.9358797545706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.228559033776584, dt = 0.040123832072173994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.58 us    (2.8%)
   patch tree reduce : 1.71 us    (1.1%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.9%)
   LB compute        : 143.27 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 711.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.691746224651028e-20,-2.780427355594715e-19,6.937905354368402e-19)
    sum a = (1.2123455534432796e-19,-1.3927755136463887e-19,-6.006280969496513e-20)
    sum e = 7.856790847868213e-10
    sum de = -1.550963648536927e-25
Info: cfl dt = 0.04012384269161884 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8737e+04 | 2592 |      1 | 4.413e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3273.29264119341 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 26.268682865848756, dt = 0.04012384269161884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.84 us    (2.5%)
   patch tree reduce : 1.97 us    (1.3%)
   gen split merge   : 1.21 us    (0.8%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.9%)
   LB compute        : 136.14 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (57.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.242662408229168e-20,-2.8507599939130343e-19,6.839734526163758e-19)
    sum a = (5.095203431982815e-19,6.120279247009096e-20,-5.244300325376164e-20)
    sum e = 7.856790250371418e-10
    sum de = -2.455692443516801e-24
Info: cfl dt = 0.04012385222690018 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9988e+04 | 2592 |      1 | 4.321e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3342.967552834998 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.308806708540374, dt = 0.04012385222690018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (2.7%)
   patch tree reduce : 1.23 us    (0.8%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (1.1%)
   LB compute        : 134.04 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 801.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5861712696378392e-20,-2.7859587438019236e-19,6.820221052609894e-19)
    sum a = (6.901726475430283e-20,1.2782495380674781e-19,-3.457492968559405e-20)
    sum e = 7.856789651370372e-10
    sum de = -9.822769774067204e-25
Info: cfl dt = 0.040123860685496525 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9581e+04 | 2592 |      1 | 4.350e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3320.3293460237674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.348930560767275, dt = 0.040123860685496525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 us    (2.2%)
   patch tree reduce : 1.72 us    (1.0%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.8%)
   LB compute        : 154.77 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.816416828774942e-21,-2.7213423525614583e-19,6.809932935707812e-19)
    sum a = (3.4207928614234477e-20,-9.531220671117719e-20,1.3944682520111988e-19)
    sum e = 7.856789051524053e-10
    sum de = -9.564275832644382e-25
Info: cfl dt = 0.04012386807517679 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.1988e+04 | 2592 |      1 | 6.173e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2339.906085340936 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.389054421452773, dt = 0.04012386807517679 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (2.9%)
   patch tree reduce : 1.24 us    (0.7%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 153.40 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (58.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0509842992441335e-20,-2.8043275535817473e-19,6.900796519133431e-19)
    sum a = (-3.9757145432523035e-19,-1.5168425176864985e-19,1.081259455874758e-19)
    sum e = 7.856788451485815e-10
    sum de = -1.0339757656912846e-25
Info: cfl dt = 0.04012387440399578 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4561e+04 | 2592 |      1 | 5.817e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2483.299064512298 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.42917828952795, dt = 0.04012387440399578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (2.9%)
   patch tree reduce : 1.79 us    (1.0%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.8%)
   LB compute        : 155.91 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4253029724270815e-20,-2.8765190505437816e-19,6.9378972635308e-19)
    sum a = (-3.217070170022122e-19,1.1562221435668253e-19,-1.1734309942341085e-19)
    sum e = 7.856787851899776e-10
    sum de = -2.507391231801365e-24
Info: cfl dt = 0.0401238796802895 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.4568e+04 | 2592 |      1 | 5.816e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2483.6774288151078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.469302163931946, dt = 0.0014991651331435207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (2.9%)
   patch tree reduce : 1.61 us    (0.9%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.7%)
   LB compute        : 156.85 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3111834296151598e-20,-2.8211599807477607e-19,6.890904638477813e-19)
    sum a = (2.729322093810996e-19,6.2689494262415554e-21,-1.8515611722673215e-19)
    sum e = 7.856772187493024e-10
    sum de = 4.652890945610781e-25
Info: cfl dt = 0.04012387985730181 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4777e+04 | 2592 |      1 | 5.789e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.23350018553735 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 733                                                     [SPH][rank=0]
Info: time since start : 153.756830912 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0008545190000000001 s
sph::RenderFieldGetter compute custom field took :  0.0006355810000000001 s
rho_t_ampl=0.000273526, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000201686, eps_t_phi=1.24762e-11 rad
vx_t_ampl=2.89987e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 26.83s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 26.47080132906509, dt = 0.04012387985730181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.74 us   (4.8%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.7%)
   LB compute        : 216.02 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.746710928856338e-21,-2.819444901225659e-19,6.816104505894111e-19)
    sum a = (-5.3480903670260804e-20,-8.697866612309819e-20,8.99255087096444e-20)
    sum e = 7.856787475640039e-10
    sum de = -2.5849394142282115e-25
Info: cfl dt = 0.04012388405537259 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7364e+04 | 2592 |      1 | 4.519e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3196.7587101334084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.51092520892239, dt = 0.04012388405537259 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.77 us    (3.0%)
   patch tree reduce : 1.58 us    (1.0%)
   gen split merge   : 851.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (1.0%)
   LB compute        : 138.96 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 821.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0460547293602492e-20,-2.873056027700353e-19,6.907372823294886e-19)
    sum a = (3.018589254597327e-19,-7.696326925994771e-20,3.2664464895113835e-21)
    sum e = 7.856786750051465e-10
    sum de = -1.5509636485369269e-24
Info: cfl dt = 0.040123887214053154 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9314e+04 | 2592 |      1 | 4.370e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3305.440904746679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.551049092977763, dt = 0.040123887214053154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.21 us    (2.6%)
   patch tree reduce : 1.52 us    (1.0%)
   gen split merge   : 852.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.7%)
   LB compute        : 143.14 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 802.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.63332005664271e-21,-2.901953577157173e-19,6.89129795777611e-19)
    sum a = (-1.0449537920861816e-19,1.0111063896193925e-19,-5.802489481704141e-20)
    sum e = 7.856786157408582e-10
    sum de = 4.652890945610781e-25
Info: cfl dt = 0.04012388934726179 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8046e+04 | 2592 |      1 | 4.465e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3234.745991061986 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.591172980191818, dt = 0.04012388934726179 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (3.1%)
   patch tree reduce : 1.74 us    (1.1%)
   gen split merge   : 1.05 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 137.16 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5180697071320976e-21,-2.8255986476307085e-19,6.8557198788566225e-19)
    sum a = (5.974687994966614e-19,-5.446152862934974e-20,-1.8657949022718956e-20)
    sum e = 7.856785565986931e-10
    sum de = 4.652890945610781e-25
Info: cfl dt = 0.040123890464363765 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8139e+04 | 2592 |      1 | 4.458e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3239.9518372177663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.631296869539078, dt = 0.040123890464363765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (3.0%)
   patch tree reduce : 1.73 us    (1.1%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.8%)
   LB compute        : 142.90 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.459572144510004e-20,-2.8786449275562065e-19,6.856131358713336e-19)
    sum a = (-5.0782785753814793e-20,1.426867083871489e-19,-1.736648626398864e-19)
    sum e = 7.856784978128269e-10
    sum de = 1.809457589959748e-24
Info: cfl dt = 0.04012389057503959 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9212e+04 | 2592 |      1 | 4.378e-02 | 0.0% |   1.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3299.7341812253517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.671420760003443, dt = 0.04012389057503959 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.47 us    (2.8%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 901.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 140.59 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 961.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9521096740181842e-20,-2.7819041725724286e-19,6.755352857144189e-19)
    sum a = (-3.808257054296754e-20,-1.884063637230379e-20,1.1122020703300966e-20)
    sum e = 7.856784394395532e-10
    sum de = -2.6366382025127757e-24
Info: cfl dt = 0.04012388968922126 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8891e+04 | 2592 |      1 | 4.401e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3281.859898131217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.71154465057848, dt = 0.04012388968922126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (2.4%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 891.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.6%)
   LB compute        : 143.14 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 891.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8127671653003877e-20,-2.8218336886318915e-19,6.796887287897481e-19)
    sum a = (7.501162173310614e-20,9.358993823299511e-21,3.1174327682834796e-19)
    sum e = 7.856783815355962e-10
    sum de = -1.1890721305449773e-24
Info: cfl dt = 0.040123887817087714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9768e+04 | 2592 |      1 | 4.337e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3330.707575110146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.7516685402677, dt = 0.040123887817087714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.61 us    (2.3%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 982.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 142.81 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.348118454690223e-20,-2.812422318128576e-19,6.982281281164015e-19)
    sum a = (-3.696437977430645e-20,-1.1747444889086577e-19,4.717208001962905e-20)
    sum e = 7.856783241563059e-10
    sum de = -2.3781442610899546e-24
Info: cfl dt = 0.04012388496905988 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9877e+04 | 2592 |      1 | 4.329e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3336.8250143910377 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.79179242808479, dt = 0.04012388496905988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (2.7%)
   patch tree reduce : 1.60 us    (1.0%)
   gen split merge   : 922.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.9%)
   LB compute        : 142.48 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (53.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9719922725498507e-20,-2.8850266665683853e-19,6.948130427186696e-19)
    sum a = (2.1114991002637765e-22,-4.934984708303632e-20,4.8277357781348046e-20)
    sum e = 7.85678267355639e-10
    sum de = -2.8434333556510326e-24
Info: cfl dt = 0.04012388115579552 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0212e+04 | 2592 |      1 | 4.305e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3355.4910900261016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.83191631305385, dt = 0.0014987328477467088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (2.6%)
   patch tree reduce : 1.57 us    (1.0%)
   gen split merge   : 962.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.8%)
   LB compute        : 136.81 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 771.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0508653906919997e-20,-2.8720701137235758e-19,6.949075715994567e-19)
    sum a = (2.125310111888459e-19,3.3057901040073297e-21,-3.8033697104307175e-20)
    sum e = 7.856771254232336e-10
    sum de = -2.223047896236262e-24
Info: cfl dt = 0.040123880994958894 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9674e+04 | 2592 |      1 | 4.344e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 124.2161178418944 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 743                                                     [SPH][rank=0]
Info: time since start : 154.60232227900002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0006556520000000001 s
sph::RenderFieldGetter compute custom field took :  0.000577114 s
rho_t_ampl=0.000281318, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000197381, eps_t_phi=1.31322e-11 rad
vx_t_ampl=4.06546e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.20s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 26.833415045901596, dt = 0.040123880994958894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.64 us   (5.6%)
   patch tree reduce : 1.97 us    (0.9%)
   gen split merge   : 1.09 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 182.29 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.910253740449163e-20,-2.870385844013249e-19,6.933168334565484e-19)
    sum a = (1.5303931864016883e-19,-4.163964033683724e-20,8.880824460390597e-20)
    sum e = 7.856782319549352e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.040123876196575876 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.5163e+04 | 2592 |      1 | 5.739e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2516.832566164739 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 26.873538926896554, dt = 0.040123876196575876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.16 us    (2.3%)
   patch tree reduce : 1.29 us    (0.7%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 165.57 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 952.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4104407646672904e-20,-2.896058633171028e-19,6.994248599553489e-19)
    sum a = (-4.9266121419539726e-20,-1.011275843584151e-19,-4.806703951981982e-20)
    sum e = 7.856781645522987e-10
    sum de = 1.2924697071141057e-24
Info: cfl dt = 0.04012387045055285 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5811e+04 | 2592 |      1 | 5.658e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2552.9321756736795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.91366280309313, dt = 0.04012387045055285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.6%)
   patch tree reduce : 1.49 us    (0.9%)
   gen split merge   : 921.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.9%)
   LB compute        : 153.13 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.827108328407648e-20,-2.9485564984469443e-19,6.947502408114628e-19)
    sum a = (-1.1853232945297872e-19,-7.431763072289056e-20,1.3247773531453222e-20)
    sum e = 7.856781099600098e-10
    sum de = 1.0339757656912846e-25
Info: cfl dt = 0.040123863773119973 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.5740e+04 | 2592 |      1 | 5.667e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2549.0015198263154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.953786673543682, dt = 0.040123863773119973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.08 us    (2.4%)
   patch tree reduce : 1.40 us    (0.8%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.7%)
   LB compute        : 154.14 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1913581323827022e-20,-2.9730215429831715e-19,6.965118864797414e-19)
    sum a = (-3.1290444837955614e-20,-8.953790881297165e-20,3.148556850784873e-20)
    sum e = 7.856780560130252e-10
    sum de = -5.169878828456423e-25
Info: cfl dt = 0.040123856175783616 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.4018e+04 | 2592 |      1 | 4.798e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3010.3105918486544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 26.9939105373168, dt = 0.040123856175783616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (2.2%)
   patch tree reduce : 1.40 us    (0.8%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.8%)
   LB compute        : 164.55 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2541279889041623e-20,-3.011987738927825e-19,6.981410943027498e-19)
    sum a = (3.9559716158673467e-19,-2.930564595364492e-19,-1.578446384481303e-19)
    sum e = 7.856780028953091e-10
    sum de = -8.271806125530277e-25
Info: cfl dt = 0.04012384767031653 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0979e+04 | 2592 |      1 | 4.251e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3398.222664361589 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.034034393492583, dt = 0.04012384767031653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (2.4%)
   patch tree reduce : 1.19 us    (0.8%)
   gen split merge   : 621.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.6%)
   LB compute        : 136.12 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 781.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6904857445159145e-20,-3.17042822297077e-19,6.880094310772654e-19)
    sum a = (3.6725295634938056e-22,-5.57551042515359e-20,3.037259886285442e-20)
    sum e = 7.85677950650012e-10
    sum de = -3.774011544773189e-24
Info: cfl dt = 0.04012383826869631 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1105e+04 | 2592 |      1 | 4.242e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3405.2285447381964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.0741582411629, dt = 0.04012383826869631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (2.0%)
   patch tree reduce : 531.00 ns  (0.4%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.7%)
   LB compute        : 133.84 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 2.70 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 681.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8846653874969605e-20,-3.1451682852907665e-19,6.930040962012077e-19)
    sum a = (9.693999176658482e-20,-1.3998622838513353e-19,1.0936143264172688e-19)
    sum e = 7.856778993200625e-10
    sum de = -2.1713491079516976e-24
Info: cfl dt = 0.04012382798310059 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1046e+04 | 2592 |      1 | 4.246e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3401.9395165287515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.114282079431593, dt = 0.04012382798310059 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (1.7%)
   patch tree reduce : 971.00 ns  (0.6%)
   gen split merge   : 531.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 701.00 ns  (0.4%)
   LB compute        : 156.82 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 971.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4903452072302115e-20,-3.2182676447064155e-19,6.989767631083157e-19)
    sum a = (-1.3760730011866902e-19,-3.902234682661242e-20,1.105444793279719e-20)
    sum e = 7.856778489467845e-10
    sum de = -1.809457589959748e-24
Info: cfl dt = 0.04012381682590165 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9747e+04 | 2592 |      1 | 4.338e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3329.576009828866 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.154405907414695, dt = 0.04012381682590165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.5%)
   patch tree reduce : 1.35 us    (0.9%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 136.80 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 921.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4635158004171113e-20,-3.2136030392037903e-19,6.9744808348026e-19)
    sum a = (3.026180792218509e-20,-6.024930582020654e-20,-1.0231364217678116e-20)
    sum e = 7.856777995696637e-10
    sum de = -1.9645539548134407e-24
Info: cfl dt = 0.04012380480966109 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9323e+04 | 2592 |      1 | 4.369e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3305.903645418298 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.194529724240596, dt = 0.0014990384975135385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (2.7%)
   patch tree reduce : 1.43 us    (0.9%)
   gen split merge   : 992.00 ns  (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.8%)
   LB compute        : 133.74 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (56.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.810393201246437e-20,-3.21879346549403e-19,6.970057122575749e-19)
    sum a = (-3.370503032658021e-19,-1.7516222696015892e-19,-8.99974811223224e-20)
    sum e = 7.856770417592157e-10
    sum de = -5.635167923017501e-24
Info: cfl dt = 0.040123804344403664 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9549e+04 | 2592 |      1 | 4.353e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.98182884970792 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 753                                                     [SPH][rank=0]
Info: time since start : 155.263467464 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0009171130000000001 s
sph::RenderFieldGetter compute custom field took :  0.000766858 s
rho_t_ampl=0.000291489, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000193679, eps_t_phi=1.35545e-11 rad
vx_t_ampl=5.03424e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.56s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 27.19602876273811, dt = 0.040123804344403664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.07 us   (5.3%)
   patch tree reduce : 1.99 us    (1.0%)
   gen split merge   : 991.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.6%)
   LB compute        : 184.03 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.411216949203942e-20,-3.289941536830642e-19,6.933348846935142e-19)
    sum a = (2.7061284675073205e-19,-8.352812125343805e-20,9.093903975354059e-20)
    sum e = 7.856777690352806e-10
    sum de = -4.652890945610781e-25
Info: cfl dt = 0.04012379145517126 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9465e+04 | 2592 |      1 | 4.359e-02 | 0.0% |   1.0% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3313.833227063901 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.236152567082513, dt = 0.04012379145517126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (3.5%)
   patch tree reduce : 1.54 us    (1.0%)
   gen split merge   : 911.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.7%)
   LB compute        : 136.96 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.720391801811479e-20,-3.305083532323973e-19,7.006136345408817e-19)
    sum a = (-5.509944578213614e-20,-3.9121734144427605e-20,3.2350808497532977e-20)
    sum e = 7.856777116336835e-10
    sum de = -1.3958672836832342e-24
Info: cfl dt = 0.04012377772822529 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8626e+04 | 2592 |      1 | 4.421e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3267.103251932473 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.276276358537686, dt = 0.04012377772822529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (3.3%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 851.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.8%)
   LB compute        : 132.77 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 912.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.855087968193655e-20,-3.311841151039798e-19,7.007362802040576e-19)
    sum a = (-1.4353592949902055e-19,-1.3500017384632971e-19,-1.3291761583880238e-19)
    sum e = 7.856776656038173e-10
    sum de = -3.7223127564886245e-24
Info: cfl dt = 0.040123763181549026 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9332e+04 | 2592 |      1 | 4.369e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3306.4309723020924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.316400136265912, dt = 0.040123763181549026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.17 us    (2.4%)
   patch tree reduce : 1.63 us    (1.0%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.7%)
   LB compute        : 154.24 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.089197127234163e-20,-3.3852876343347706e-19,6.920875285017157e-19)
    sum a = (1.2729874789648631e-19,-8.312664373117608e-20,-1.1131639366136552e-19)
    sum e = 7.856776206127398e-10
    sum de = 2.8434333556510326e-24
Info: cfl dt = 0.04012374782836151 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8803e+04 | 2592 |      1 | 4.408e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3276.9554272586593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.35652389944746, dt = 0.04012374782836151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (3.1%)
   patch tree reduce : 1.83 us    (1.1%)
   gen split merge   : 751.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (1.0%)
   LB compute        : 148.02 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 951.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.14231757342798e-20,-3.4082388901191553e-19,6.880544587547743e-19)
    sum a = (-2.3065621805690784e-19,1.7714281003522517e-20,-8.204867322189668e-20)
    sum e = 7.856775767906306e-10
    sum de = -2.7917345673664684e-24
Info: cfl dt = 0.0401237316820959 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9555e+04 | 2592 |      1 | 4.352e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3318.85831346191 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 27.39664764727582, dt = 0.0401237316820959 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (2.7%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 891.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (1.0%)
   LB compute        : 152.04 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 941.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4869680064196308e-20,-3.380840751502017e-19,6.85349525122784e-19)
    sum a = (8.589364725178075e-20,-9.699311301705231e-20,-2.4844916182383687e-20)
    sum e = 7.856775341648645e-10
    sum de = 7.754818242684634e-25
Info: cfl dt = 0.04012371475634109 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9853e+04 | 2592 |      1 | 4.331e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3335.4322718444355 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.436771378957918, dt = 0.04012371475634109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (2.4%)
   patch tree reduce : 1.69 us    (1.1%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.9%)
   LB compute        : 141.74 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4883279688326625e-20,-3.4427869590553777e-19,6.855002688920839e-19)
    sum a = (-4.011355333512787e-20,6.795727885505198e-20,-1.1817133856978376e-19)
    sum e = 7.856774927621742e-10
    sum de = -1.550963648536927e-25
Info: cfl dt = 0.0401236970648369 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8963e+04 | 2592 |      1 | 4.396e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3285.8769513707603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.47689509371426, dt = 0.0401236970648369 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.55 us    (2.8%)
   patch tree reduce : 1.95 us    (1.2%)
   gen split merge   : 972.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.8%)
   LB compute        : 144.93 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.069150209706367e-20,-3.3824469696891826e-19,6.788864965260391e-19)
    sum a = (2.2388874020131533e-19,-2.5737161124512848e-19,-7.270546317269504e-20)
    sum e = 7.856774526072991e-10
    sum de = -6.048758229294015e-24
Info: cfl dt = 0.040123678621468525 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1031e+04 | 2592 |      1 | 4.247e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3401.117232851881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.517018790779094, dt = 0.040123678621468525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (1.8%)
   patch tree reduce : 580.00 ns  (0.4%)
   gen split merge   : 722.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 631.00 ns  (0.4%)
   LB compute        : 133.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.52 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.498889795028945e-20,-3.550966370157219e-19,6.768814153932471e-19)
    sum a = (2.0797115904625291e-19,-7.898978462940077e-20,-7.587056656895464e-20)
    sum e = 7.856774137232471e-10
    sum de = 1.5509636485369269e-24
Info: cfl dt = 0.040123659440261 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1606e+04 | 2592 |      1 | 4.207e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3433.121494892994 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.557142469400564, dt = 0.00150001017405188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (1.7%)
   patch tree reduce : 521.00 ns  (0.4%)
   gen split merge   : 551.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.7%)
   LB compute        : 133.14 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 1.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 641.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4885376982727875e-20,-3.5163279257731253e-19,6.7670411097571445e-19)
    sum a = (-6.781444970263506e-21,6.256153084417973e-20,-2.422388585292769e-20)
    sum e = 7.856769734429906e-10
    sum de = -5.686866711302065e-25
Info: cfl dt = 0.04012365870920134 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.1069e+04 | 2592 |      1 | 4.244e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 127.22714619164067 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 763                                                     [SPH][rank=0]
Info: time since start : 155.88234702 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000633188 s
sph::RenderFieldGetter compute custom field took :  0.000573839 s
rho_t_ampl=0.000303587, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000190611, eps_t_phi=1.38889e-11 rad
vx_t_ampl=5.7942e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 27.92s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 27.558642479574615, dt = 0.04012365870920134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.03 us   (5.9%)
   patch tree reduce : 1.89 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.6%)
   LB compute        : 177.09 us  (86.4%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.457317089008187e-20,-3.49020325937599e-19,6.757708953204432e-19)
    sum a = (-3.244396419078454e-19,-7.406632535818504e-20,1.4428638472207106e-19)
    sum e = 7.856773899289981e-10
    sum de = -4.8596860987490376e-24
Info: cfl dt = 0.04012363878210015 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.6462e+04 | 2592 |      1 | 5.579e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2589.189423312669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.598766138283818, dt = 0.04012363878210015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (3.5%)
   patch tree reduce : 1.39 us    (0.9%)
   gen split merge   : 701.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.9%)
   LB compute        : 140.26 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (58.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5140806407809945e-20,-3.547279462681564e-19,6.84940814394992e-19)
    sum a = (-1.9630368872607943e-19,-7.456690777498761e-20,5.3556714018705016e-20)
    sum e = 7.856773458670679e-10
    sum de = 2.223047896236262e-24
Info: cfl dt = 0.04012361814144016 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8390e+04 | 2592 |      1 | 4.439e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3253.9367519914967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.638889777065916, dt = 0.04012361814144016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (3.3%)
   patch tree reduce : 1.66 us    (1.1%)
   gen split merge   : 892.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.8%)
   LB compute        : 138.57 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9943396560234595e-20,-3.5773272451112904e-19,6.852695012701476e-19)
    sum a = (2.461358890872852e-19,-3.344841540431226e-21,9.84016648903216e-20)
    sum e = 7.85677311027551e-10
    sum de = -2.3781442610899546e-24
Info: cfl dt = 0.04012359680638898 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9358e+04 | 2592 |      1 | 4.367e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3307.835868008763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.679013395207356, dt = 0.04012359680638898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (3.0%)
   patch tree reduce : 1.52 us    (0.9%)
   gen split merge   : 1.00 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.8%)
   LB compute        : 146.03 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 981.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8647827889652934e-20,-3.564387124166094e-19,6.901174008394236e-19)
    sum a = (1.860263571131613e-19,-2.0169088701418432e-19,-9.130128466574051e-20)
    sum e = 7.856772774677329e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.04012357479143319 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8958e+04 | 2592 |      1 | 4.396e-02 | 0.0% |   0.9% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3285.549121985055 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.719136992013745, dt = 0.04012357479143319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (2.7%)
   patch tree reduce : 1.41 us    (0.9%)
   gen split merge   : 861.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.8%)
   LB compute        : 141.42 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.48459404236568e-20,-3.6851081826475174e-19,6.826482845851011e-19)
    sum a = (-1.1258357099560133e-19,1.5900081181974625e-19,-3.056141622823927e-20)
    sum e = 7.856772452663454e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.04012355211121891 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9030e+04 | 2592 |      1 | 4.391e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3289.5714659828004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.759260566805178, dt = 0.04012355211121891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.61 us    (3.0%)
   patch tree reduce : 1.67 us    (1.1%)
   gen split merge   : 961.00 ns  (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.8%)
   LB compute        : 136.54 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.452670746672566e-20,-3.548974002329149e-19,6.826406023355109e-19)
    sum a = (1.9540938258964474e-19,-2.229225958537603e-20,-8.473993818097069e-20)
    sum e = 7.856772144340954e-10
    sum de = -7.237830359838992e-25
Info: cfl dt = 0.04012352878049816 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9895e+04 | 2592 |      1 | 4.328e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3337.7870562992125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.799384118916397, dt = 0.04012352878049816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (2.4%)
   patch tree reduce : 1.45 us    (0.9%)
   gen split merge   : 1.05 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.9%)
   LB compute        : 139.01 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 2.79 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 811.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8290066582530634e-20,-3.5943548010852074e-19,6.781536196126451e-19)
    sum a = (-2.3986465460000372e-21,-1.8295587694658e-19,3.673878978751116e-21)
    sum e = 7.856771849807403e-10
    sum de = -1.34416849539867e-24
Info: cfl dt = 0.04012350481412391 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0451e+04 | 2592 |      1 | 4.288e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3368.7818271425126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.839507647696895, dt = 0.04012350481412391 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.25 us    (2.6%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 1.09 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.6%)
   LB compute        : 145.52 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4244532897822914e-20,-3.6999441340105573e-19,6.800747656822194e-19)
    sum a = (-5.83739125775063e-20,-1.387961480556658e-20,4.695742292447972e-22)
    sum e = 7.856771569141881e-10
    sum de = 1.9645539548134407e-24
Info: cfl dt = 0.040123480227044636 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0449e+04 | 2592 |      1 | 4.288e-02 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3368.619308811594 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.879631152511017, dt = 0.040123480227044636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.02 us    (2.6%)
   patch tree reduce : 1.78 us    (1.1%)
   gen split merge   : 1.02 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.9%)
   LB compute        : 138.09 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.068538344165845e-20,-3.6716155390778354e-19,6.800293226660091e-19)
    sum a = (-9.162550463426721e-20,1.2211738482587673e-19,5.391665138133723e-20)
    sum e = 7.856771302405218e-10
    sum de = 5.169878828456423e-24
Info: cfl dt = 0.0401234550342987 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0211e+04 | 2592 |      1 | 4.305e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3355.400263479416 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 27.919754632738062, dt = 0.001501563673059536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (2.3%)
   patch tree reduce : 1.61 us    (1.0%)
   gen split merge   : 1.04 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.7%)
   LB compute        : 150.49 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 831.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0162849033966714e-20,-3.6424920510013373e-19,6.811825233227277e-19)
    sum a = (2.525410435564122e-19,-9.003523052469477e-20,-2.989805799072573e-19)
    sum e = 7.856769240401836e-10
    sum de = 1.137373342260413e-24
Info: cfl dt = 0.040123454080072084 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0762e+04 | 2592 |      1 | 4.266e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 126.71993433118405 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 773                                                     [SPH][rank=0]
Info: time since start : 156.505866227 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000678015 s
sph::RenderFieldGetter compute custom field took :  0.000547319 s
rho_t_ampl=0.000317139, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000188192, eps_t_phi=1.41216e-11 rad
vx_t_ampl=6.33939e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28.28s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 27.92125619641112, dt = 0.040123454080072084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.09 us   (4.9%)
   patch tree reduce : 1.95 us    (0.9%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 200.15 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 2.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.036048593376204e-20,-3.6801929906757945e-19,6.689214409225316e-19)
    sum a = (5.0362950718703983e-20,-4.245075998148137e-20,1.5578790161633974e-19)
    sum e = 7.856771142023422e-10
    sum de = 7.237830359838992e-25
Info: cfl dt = 0.04012342827932317 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.4528e+04 | 2592 |      1 | 5.821e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2481.4234324467466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 27.961379650491192, dt = 0.04012342827932317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (2.3%)
   patch tree reduce : 1.80 us    (1.0%)
   gen split merge   : 761.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.6%)
   LB compute        : 160.92 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 631.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8385371600285727e-20,-3.687661289049879e-19,6.842956267625902e-19)
    sum a = (1.884365059888904e-19,-1.2621832482209186e-19,1.1201451782149551e-19)
    sum e = 7.856770851674294e-10
    sum de = 3.5155176033503676e-24
Info: cfl dt = 0.04012340189933445 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 6.0143e+04 | 2592 |      1 | 4.310e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3351.5908441662773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.001503078770515, dt = 0.04012340189933445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (2.4%)
   patch tree reduce : 1.81 us    (0.9%)
   gen split merge   : 902.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.7%)
   LB compute        : 179.41 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 842.00 ns  (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.2727623456790123
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.893136477187555e-20,-3.755120398923384e-19,6.879118611671009e-19)
    sum a = (1.7550090381608765e-20,-1.5596234818256707e-20,3.014232413666231e-20)
    sum e = 7.856770627785095e-10
    sum de = -1.0339757656912846e-24
Info: cfl dt = 0.04012337495989443 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7572e+04 | 2592 |      1 | 4.502e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3208.300868772381 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.041626480669848, dt = 0.04012337495989443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (2.2%)
   patch tree reduce : 1.50 us    (0.8%)
   gen split merge   : 941.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.8%)
   LB compute        : 167.31 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.60229185403838e-20,-3.739148592499599e-19,6.874787774748268e-19)
    sum a = (3.374717814908742e-19,-3.0185759036788916e-20,7.151913834734355e-20)
    sum e = 7.856770417534341e-10
    sum de = 2.3781442610899546e-24
Info: cfl dt = 0.0401233474763075 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8815e+04 | 2592 |      1 | 4.407e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3277.586760137529 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.08174985562974, dt = 0.0401233474763075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.88 us    (2.1%)
   patch tree reduce : 1.38 us    (0.7%)
   gen split merge   : 742.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.8%)
   LB compute        : 170.39 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 791.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.611913176701882e-20,-3.754237184319188e-19,6.911784534295188e-19)
    sum a = (1.3425642499009866e-19,1.8558323499531777e-19,-9.014862353285915e-20)
    sum e = 7.856770221254975e-10
    sum de = -4.446095792472524e-24
Info: cfl dt = 0.040123319463982385 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.5711e+04 | 2592 |      1 | 5.670e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2547.3250753225752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.12187320310605, dt = 0.040123319463982385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (2.3%)
   patch tree reduce : 1.60 us    (0.9%)
   gen split merge   : 901.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.7%)
   LB compute        : 155.23 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 901.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.748626581481607e-20,-3.636475921755547e-19,6.84318065515438e-19)
    sum a = (-1.1008551145694296e-20,-7.350373819518675e-20,-3.931996321980491e-20)
    sum e = 7.856770038896899e-10
    sum de = -3.308722450212111e-24
Info: cfl dt = 0.0401232909383843 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep 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.3048e+04 | 2592 |      1 | 6.021e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2398.9014592365074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.161996522570032, dt = 0.0401232909383843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (2.2%)
   patch tree reduce : 1.56 us    (0.8%)
   gen split merge   : 882.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.7%)
   LB compute        : 177.34 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.00 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.391725721888383e-20,-3.717965819911058e-19,6.837601264793297e-19)
    sum a = (-7.546041799128478e-20,-1.609504567088225e-20,-1.8582920542418733e-19)
    sum e = 7.856769870399536e-10
    sum de = 2.895132143935597e-24
Info: cfl dt = 0.04012326191503008 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5234e+04 | 2592 |      1 | 5.730e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2520.7204785699346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.202119813508418, dt = 0.04012326191503008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (1.8%)
   patch tree reduce : 972.00 ns  (0.5%)
   gen split merge   : 1.02 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.7%)
   LB compute        : 173.82 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.962524503998189e-20,-3.712855499131431e-19,6.733648361235615e-19)
    sum a = (-9.841496015559203e-20,-1.0354158446061598e-19,2.4836021269316222e-20)
    sum e = 7.856769715685198e-10
    sum de = -3.2053248736429822e-24
Info: cfl dt = 0.040123232409482755 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.5605e+04 | 2592 |      1 | 5.684e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2541.434127583202 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.24224307542345, dt = 0.040123232409482755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (1.5%)
   patch tree reduce : 571.00 ns  (0.3%)
   gen split merge   : 560.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.5%)
   LB compute        : 166.64 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 1.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.506703608735021e-20,-3.7720010947945105e-19,6.785876256106041e-19)
    sum a = (-6.471724202433959e-20,7.80376330713599e-20,-7.108298666875381e-20)
    sum e = 7.856769574661851e-10
    sum de = -2.0679515313825692e-25
Info: cfl dt = 0.04012320243734621 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5615e+04 | 2592 |      1 | 5.682e-02 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2541.9805002436397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.28236630783293, dt = 0.001503605414704623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (1.6%)
   patch tree reduce : 681.00 ns  (0.4%)
   gen split merge   : 671.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.5%)
   LB compute        : 164.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 651.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.577032139078438e-20,-3.7343874495867473e-19,6.765564545230131e-19)
    sum a = (4.978635536128565e-19,-4.729316377288761e-20,-1.343561723128741e-19)
    sum e = 7.856768949040787e-10
    sum de = 5.0664812518872945e-24
Info: cfl dt = 0.04012320130540614 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.5225e+04 | 2592 |      1 | 5.731e-02 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.44439420734625 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 783                                                     [SPH][rank=0]
Info: time since start : 157.217357622 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.000644805 s
sph::RenderFieldGetter compute custom field took :  0.000533458 s
rho_t_ampl=0.000331666, rho_t_phi=3.14159 rad
eps_t_ampl=-0.00018642, eps_t_phi=1.48956e-11 rad
vx_t_ampl=6.66971e-06, vx_t_phi=4.71239 rad
Info: evolve_until (target_time = 28.65s, niter_max = -1, max_walltime = -1.00s)      [SPH][rank=0]
---------------- t = 28.283869913247635, dt = 0.04012320130540614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.82 us   (4.5%)
   patch tree reduce : 2.30 us    (1.0%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 212.17 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.592240307610341e-20,-3.754313181854898e-19,6.711180858223473e-19)
    sum a = (-1.1241617101829443e-19,-2.3379014076090097e-19,-8.378979737626785e-20)
    sum e = 7.856769493466354e-10
    sum de = 6.927637630131607e-24
Info: cfl dt = 0.0401231708697567 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.0703e+04 | 2592 |      1 | 5.112e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2825.512888289961 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.32399311455304, dt = 0.0401231708697567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (2.4%)
   patch tree reduce : 2.01 us    (1.0%)
   gen split merge   : 992.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.6%)
   LB compute        : 183.82 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.955294468168493e-20,-3.885533197195269e-19,6.687706158855015e-19)
    sum a = (1.210782468992598e-19,-6.259264875407175e-20,9.082536019443707e-21)
    sum e = 7.856769354096963e-10
    sum de = -2.481541837659083e-24
Info: cfl dt = 0.040123139995281276 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9246e+04 | 2592 |      1 | 4.375e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3301.603393666418 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.364116285422796, dt = 0.040123139995281276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (2.5%)
   patch tree reduce : 1.65 us    (1.0%)
   gen split merge   : 871.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.7%)
   LB compute        : 154.82 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 982.00 ns  (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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.913274215603342e-20,-3.8762923076504377e-19,6.709982020007234e-19)
    sum a = (2.0060021967737492e-19,5.785356053148191e-20,-1.6477323779382516e-19)
    sum e = 7.856769254065198e-10
    sum de = 1.0339757656912846e-24
Info: cfl dt = 0.040123108701845156 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.6478e+04 | 2592 |      1 | 5.577e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2590.0445116154146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.404239425418076, dt = 0.040123108701845156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (2.9%)
   patch tree reduce : 1.32 us    (0.8%)
   gen split merge   : 1.11 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.9%)
   LB compute        : 153.19 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 761.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.871582601030451e-20,-3.8289478968906323e-19,6.608991676937102e-19)
    sum a = (2.794021671543252e-19,1.5729055916815615e-19,-1.0898944615440352e-19)
    sum e = 7.856769167058282e-10
    sum de = -5.37667398159468e-24
Info: cfl dt = 0.04012307700512813 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.7609e+04 | 2592 |      1 | 5.444e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2653.0889091108734 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.44436253411992, dt = 0.04012307700512813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (2.6%)
   patch tree reduce : 1.80 us    (1.0%)
   gen split merge   : 971.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.7%)
   LB compute        : 165.86 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0147355286979708e-19,-3.7458908063095367e-19,6.57645285320757e-19)
    sum a = (9.187208582783402e-20,1.9742018495509292e-19,-1.8463737606637134e-19)
    sum e = 7.8567690930475e-10
    sum de = -2.9985297205047253e-24
Info: cfl dt = 0.04012304492086012 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.7351e+04 | 2592 |      1 | 4.520e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3195.982768401158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.48448561112505, dt = 0.04012304492086012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.06 us    (2.2%)
   patch tree reduce : 1.71 us    (0.9%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.7%)
   LB compute        : 165.00 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 661.00 ns  (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: 2.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.014078252713453e-19,-3.658624068446349e-19,6.487194577281974e-19)
    sum a = (1.208343358893801e-19,-6.260024850764273e-20,-8.919248323013399e-20)
    sum e = 7.856769031848945e-10
    sum de = 2.0679515313825692e-25
Info: cfl dt = 0.04012301246477967 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9084e+04 | 2592 |      1 | 4.387e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3292.524668299791 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.52460865604591, dt = 0.04012301246477967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (2.3%)
   patch tree reduce : 1.55 us    (0.9%)
   gen split merge   : 781.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.8%)
   LB compute        : 152.91 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (2.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (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.272762345679013
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0689279336214722e-19,-3.7358735095079933e-19,6.470555564731823e-19)
    sum a = (-3.8361091241406996e-20,5.42607256811109e-20,8.887866312295403e-20)
    sum e = 7.856768983269922e-10
    sum de = 8.271806125530277e-25
Info: cfl dt = 0.0401229796526294 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8390e+04 | 2592 |      1 | 4.439e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3253.877162996838 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.56473166851069, dt = 0.0401229796526294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.85 us    (2.3%)
   patch tree reduce : 1.51 us    (0.9%)
   gen split merge   : 751.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.9%)
   LB compute        : 150.48 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 671.00 ns  (59.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.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0210125143501169e-19,-3.6906621647166937e-19,6.541940086775744e-19)
    sum a = (-9.500457074061104e-20,1.4601421940845708e-19,-3.1456427002320034e-20)
    sum e = 7.856768947102062e-10
    sum de = -1.5509636485369269e-24
Info: cfl dt = 0.040122946500150775 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.9627e+04 | 2592 |      1 | 4.347e-02 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3322.773002538842 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 28.604854648163318, dt = 0.040122946500150775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (2.1%)
   patch tree reduce : 1.23 us    (0.7%)
   gen split merge   : 1.02 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.8%)
   LB compute        : 168.04 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 882.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.716510879128221e-20,-3.613678715030034e-19,6.50517782953571e-19)
    sum a = (2.551250111202345e-20,8.30287969039496e-20,-1.1390062958686525e-19)
    sum e = 7.856768923127824e-10
    sum de = -3.2053248736429822e-24
Info: cfl dt = 0.04012291302307919 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8221e+04 | 2592 |      1 | 4.452e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3244.4512753613126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 28.64497759466347, dt = 0.0015060354206717363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 2592.0 min = 2592.0 factor = 1
 - strategy "round robin" : max = 2462.4 min = 2462.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 2592
    max = 2592
    avg = 2592
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (2.4%)
   patch tree reduce : 1.70 us    (1.0%)
   gen split merge   : 831.00 ns  (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.7%)
   LB compute        : 155.07 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 691.00 ns  (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: 2.2727623456790127
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.969233495175356e-20,-3.6250752644053387e-19,6.48692292406218e-19)
    sum a = (1.5669410688704928e-19,-1.6336312171917983e-19,-2.4422206363413144e-20)
    sum e = 7.856768853113469e-10
    sum de = -9.098986738083304e-24
Info: cfl dt = 0.04012291176049168 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 5.8874e+04 | 2592 |      1 | 4.403e-02 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 123.1486796448454 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 793                                                     [SPH][rank=0]
Info: time since start : 157.869140828 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0007939990000000001 s
sph::RenderFieldGetter compute custom field took :  0.000702121 s
rho_t_ampl=0.000346693, rho_t_phi=3.14159 rad
eps_t_ampl=-0.000185273, eps_t_phi=1.50844e-11 rad
vx_t_ampl=6.79051e-06, vx_t_phi=4.71239 rad

make gifs

469 from matplotlib.animation import PillowWriter
470 from shamrock.utils.plot import show_image_sequence
471
472 keep_list = []

show them the gifs (i have to unroll the loop otherwise the doc does not capture the gifs …)

476 ani0 = show_image_sequence(f"_to_trash/dump_dustywave_tva_{0:02d}_*.png")
477 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
478 ani0.save(f"_to_trash/dustywave_tva_scan_{0:04}.gif", writer=writer)
479 plt.show()
482 ani1 = show_image_sequence(f"_to_trash/dump_dustywave_tva_{1:02d}_*.png")
483 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
484 ani1.save(f"_to_trash/dustywave_tva_scan_{1:04}.gif", writer=writer)
485 plt.show()
488 ani2 = show_image_sequence(f"_to_trash/dump_dustywave_tva_{2:02d}_*.png")
489 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
490 ani2.save(f"_to_trash/dustywave_tva_scan_{2:04}.gif", writer=writer)
491 plt.show()
495 fig, axs = plt.subplots(1, len(all_case_plot), figsize=(12, 5), sharey=True)
496 for i, case in enumerate(all_case_plot):
497     for curve in case["curves"]:
498         axs[i].plot(curve["x"], curve["y"], curve["symbol"], label=curve["label"])
499     axs[i].set_xlabel(case["xlabel"])
500     if i == 0:
501         axs[i].set_ylabel(case["ylabel"])
502     axs[i].set_title(case["title"])
503
504 axs[0].legend(fontsize=11, loc="upper left")
505 plt.tight_layout()
506 plt.savefig("_to_trash/dustywave_tva_scan_all.png")
507 plt.savefig("_to_trash/dustywave_tva_scan_all.pdf")
508 plt.show()
cs=1.00e-04 [code unit], cs=3.16e-03 [code unit], cs=1.00e-01 [code unit]

Total running time of the script: (2 minutes 53.068 seconds)

Estimated memory usage: 980 MB

Gallery generated by Sphinx-Gallery